duanchuonong5370 2015-09-22 19:31
浏览 64
已采纳

PHP中的ASCII密钥编码

I am new to PHP and my first assignment. The secretword is encrypted using c# (TripleDES /

CBC). On comparison, I found that the IV, and the secretword bytes do match, but not the key.

This is the c# code that works fine...

   string epws = secretWord;
   byte[] rawdata = Convert.FromBase64CharArray(char[] aArr);
   mCryptoService = new TripleDESCryptoServiceProvider();

   string key = ASCIIEncoding.ASCII.GetString(rawdata);
   key = key.Substring(0, 24); 
   mCryptoService.Key = ASCIIEncoding.ASCII.GetBytes(key);

   byte[] ivB = new byte[8];
   Buffer.BlockCopy(rawdata, 31, ivB, 0, 8);
   mCryptoService.IV = ivB;

   byte[] epwb = Convert.FromBase64String(epws);
   ICryptoTransform cryptoTransform = mCryptoService.CreateDecryptor();
   MemoryStream ms = new MemoryStream(epwb, 0, epwb.Length);
   CryptoStream cs = new CryptoStream(ms, cryptoTransform, CryptoStreamMode.Read);
   StreamReader sr = new StreamReader(cs);
   return sr.ReadToEnd();

This is the PHP code that I need help...

<?php

 // dkey is the rawdata passed in as string from database

 $byteArray = unpack('C*', $dkey);
 $mkey = implode(array_map('chr', $byteArray));
 $mkey = base64_decode($mkey);

 $iv = substr($mkey, 31, 8);
 $mkey = substr($mkey, 0, 24);

 // the encrypted secretword passed in as string from database
 $epws = base64_decode($epws);

 $ok= trim(mcrypt_decrypt(MCRYPT_3DES, $mkey, $epws, MCRYPT_MODE_CBC, $iv));

?>

These are the keys that are different. IF I substitute the c# key in php, it works fine.

From c#
key = (35, 63, 63,43, 63,49,20, 63, 63,97,21,24, 63,97, 63, 63,125,98,125,15,62,108,55,70)

From php            
key = (35,229,239,43,244,49,20,141,144,97,21,24,200,97,196,216,125,98,125,15,62,108,55,70)
           ^   ^      ^         ^   ^            ^      ^   ^

Don't know what else to do.

  • 写回答

1条回答 默认 最新

  • douzhuan4406 2015-09-23 00:02
    关注

    A key consists of bytes, not characters. If you need a key displayed as string - usually you don't - then you should encode it to hexadecimals. If you want to use it later on, you can decode the hexadecimals to a byte array again.

    ASCII only has values from 0 to 127, of which the bottom 32 characters as well as the value 127 isn't printable. So your C# code is in that sense worse than your PHP code, and it needs the biggest change.


    Currently the C# code is simply replacing bytes outside the ASCII range (0-127) with question marks (3F hex, or 63 in decimals - check the print out of the key). You can simply replace each value of 128 or higher with the value 63.

    Obviously that means that your key loses entropy, on average it will only be half as strong (true in your example, with 8 bytes replaced). If you are unlucky then all bytes are converted into question marks (about once in 65536) or anything in between, leaving you extremely vulnerable to attack.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!