iOS和.NET的PHP加密差异

在iOS和PHP之间进行加密通信时遇到问题.我有一个应用程序加密字符串并将其发送到解密它的PHP服务器.那部分工作正常.现在,PHP服务器需要将加密的响应发送回应用程序,这似乎会造成一些影响
更多的白发.

问题是,当我在PHP中加密字符串时,它看起来与在iOS甚至.NET中加密的相同字符串不同 – 显然所有地方都使用相同的算法,密钥和IV.

我在CBC模式下使用Rijndael 128,其中IV由空字节组成(到目前为止).

PHP加密看起来如此:

$encrypted = mcrypt_encrypt( MCRYPT_RIJNDAEL_128, $this->secret_key, $str, MCRYPT_MODE_CBC, $this->iv );
$encrypted = base64_encode( $encrypted );

iOS加密附加在此文件中:

StringEncryption.m:http://pastie.org/1365766

我希望有人可以帮助我找到我遗漏的东西或者有一些不同的价值参数.我已经看了几个小时了,找不到别的东西可以试试.

解决方法:

最有可能是填充问题…有关详细信息,请参阅herehere.

OP评论后编辑:

PHP没有内置支持其他填充模式而不是NULL填充.至少.Net允许你指定NULL-padding(我认为),另一个选项是在PHP中实现PKCS#7-padding,这并不困难.

Pad the input with a padding string of
between 1 and 8 bytes to make the
total length an exact multiple of 8
bytes. The value of each byte of the
padding string is set to the number of
bytes added – i.e. 8 bytes of value
0x08, 7 bytes of value 0x07, …, 2
bytes of 0x02, or one byte of value
0x01.

$blockSize = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
$padding   = $blockSize - (strlen($data) % $blockSize);
$data      .= str_repeat(chr($padding), $padding);
上一篇:java – 将字符串转换为私钥和公钥(RSA)


下一篇:在python中加密 – 在Javascript中解密