PHP中的AES 256字符串加密和iPhone上的解密

时间:2010-12-15 21:29:56

标签: php iphone encryption aes

我在我的PHP代码上有这个:

$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
$key = "bla";
$text = json_encode($rows);
$crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $text, MCRYPT_MODE_ECB, $iv)
print base64_encode($crypttext);

这个是iphone:

NSString *response = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.bla.com/myinfo.php"]  encoding:NSUTF8StringEncoding error:&error];
    response = [[NSData base64DataFromString:response] AESDecryptWithPassphrase:@"bla"];
    response = [[[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding] autorelease];
    NSLog(response);

但它不起作用,任何人都有一个有效的方法吗?   感谢

1 个答案:

答案 0 :(得分:2)

我打赌,你在填充问题上遇到了磕磕绊绊。我在三个SO答案中讨论了这个主题,因此您可能会在其中一个答案中找到解决方案: