好的
我正在使用它来加密我在 iPhone 上的数据:
- (NSData *)AES128EncryptWithKey:(NSString *)key{
char keyPtr[kCCKeySizeAES128 + 1]; // room for terminator (unused)
bzero( keyPtr, sizeof( keyPtr ) ); // fill with zeroes (for padding)
// fetch key data
[key getCString:keyPtr maxLength:sizeof( keyPtr ) encoding:NSUTF8StringEncoding];
NSUInteger dataLength = [self length];
//See the doc: For block ciphers, the output size will always be less than or
//equal to the input size plus the size of one block.
//That's why we need to add the size of one block here
size_t bufferSize = dataLength + kCCBlockSizeAES128;
void *buffer = malloc( bufferSize );
size_t numBytesEncrypted = 0;
CCCryptorStatus cryptStatus = CCCrypt( kCCEncrypt, kCCAlgorithmAES128, kCCOptionECBMode /*| kCCOptionPKCS7Padding*/,
keyPtr, kCCKeySizeAES128,
NULL /* initialization vector (optional) */,
[self bytes], dataLength, /* input */
buffer, bufferSize, /* output */
&numBytesEncrypted );
if( cryptStatus == kCCSuccess )
{
//the returned NSData takes ownership of the buffer and will free it on deallocation
return [NSData dataWithBytesNoCopy:buffer length:numBytesEncrypted];
}
free( buffer ); //free the buffer
return nil;}
在我的服务器上,我的 php 脚本使用:
$base64encoded_ciphertext = $pass;
mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, base64_decode($pass), 'ecb');
$decrypted = $res_non;
$dec_s2 = strlen($decrypted);
$padding = ord($decrypted[$dec_s2-1]);
$decrypted = substr($decrypted, 0, -$padding);
return $decrypted;
但是,无论密钥是什么,它都失败了。
密钥的长度始终为 10 个字符。我使用系统时钟构建密码以获取值。
在 php 方面,我复制了密钥构建,根据我的脚本,密钥始终与 iPhone 用于加密的密钥相匹配。
此代码在不同的脚本中工作,来自不同的应用程序......并且仍然有效。我已经对所有相关代码进行了彻底的剪切和粘贴,但仍然一无所获。
我只是不知道我做错了什么......超出我想要做的事情可能是绝对不可能的