微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Python中的AES加密与iOS不同

我试图加密IOS中的字符串,然后将其发送到TCP服务器. Python版本的代码和iOS版本如下所示.请查看两个版本的输出.它们看起来非常相似,但长度不同,我不知道原因.任何人都可以检查一下,可能是什么原因?

请注意,Python脚本中的PADDING应该被丢弃,因为我已经给出了16的文本长度.

PYTHON代码

     #!/usr/bin/env python

     from Crypto.Cipher import AES
     import base64
     import os

     # the block size for the cipher object; must be 16, 24, or 32 for AES
     BLOCK_SIZE = 16

     PADDING = '{'

     # one-liner to sufficiently pad the text to be encrypted
     pad = lambda s: s + (BLOCK_SIZE - len(s) % BLOCK_SIZE) * PADDING

     # one-liners to encrypt/encode and decrypt/decode a string
     # encrypt with AES, encode with base64
     EncodeAES = lambda c, s: base64.b64encode(c.encrypt(pad(s)))
     DecodeAES = lambda c, e: c.decrypt(base64.b64decode(e)).rstrip(PADDING)


     secret = "1234567890123456" 

     # create a cipher object using the random secret
     cipher = AES.new(secret)

     encoded = EncodeAES(cipher, 'password12345678')
     print 'Encrypted string:', encoded

     decoded = DecodeAES(cipher, encoded)
     print 'Decrypted string:', decoded

OUTPUT:

加密字符串:57AayWF4jKYx7KzGkwudIBZUsn1ULOC0C4c5YF3xeI8 =

解密字符串:密码12345678

Nsstring *forKey=@"1234567890123456";
Nsstring *mystr =@"password12345678";
const char *utfString = [mystr UTF8String];
NSData *aData=[NSData dataWithBytes: utfString length: strlen(utfString)];
aData=[mystr dataUsingEncoding:NSUTF8StringEncoding];
NSData *data;//=[aData AES128EncryptWithKey:forKey];
data=[aData AES128EncryptWithKey:forKey];

Nsstring *base64 = [data base64EncodedString];

aData=[data AES128DecryptWithKey:forKey];
mystr=[[Nsstring alloc] initWithData:aData encoding:NSUTF8StringEncoding];

NSLog(@"AES data : %@  \n %@",mystr,base64 );

OUTPUT:

AES数据:密码12345678
 57AayWF4jKYx7KzGkwudIKNlwA HErrmiy1Z0szzZds =

解决方法:

好的,在这里.谢谢sarnold的线索:)

from Crypto.Cipher import AES
import base64
import os

    # the block size for the cipher object; must be 16, 24, or 32 for AES
    BLOCK_SIZE = 16
    mode = AES.MODE_CBC
    secret = "1234567890123456" #os.urandom(BLOCK_SIZE)

    # create a cipher object using the random secret
    cipher = AES.new(secret,mode)

    # encode a string
    #tx=cipher.encrypt('1234567890123456')
    #print base64.b64encode(tx)

    myData='aaaaaaaaaaaaaaaa'
    #encoded = EncodeAES(cipher, myData)
    encoded = cipher.encrypt(myData)
    print 'Encrypted string:', base64.b64encode(encoded)
    mode = AES.MODE_ECB
    cipher=AES.new(secret,mode)
    decoded = cipher.decrypt(encoded)
    print 'Decrypted string:', decoded

Python输出

加密字符串:C9pEG6g8ge76xt2q9XLbpw ==

解密的字符串:aaaaaaaaaaaaaaa

*Changed AES Ccoptions to kCcoptionECBMode in iOS. *

CCCryptorStatus cryptStatus = CCCrypt(kCCEncrypt, kCCAlgorithmAES128, kCcoptionECBMode,keyPtr, CCKeySizeAES128, NULL,[self bytes], dataLength,  buffer, bufferSize,  &numBytesEncrypted);

现在的输出是:

iOS输出

AES数据:aaaaaaaaaaaaaaa
 C9pEG6g8ge76xt2q9XLbpw ==

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐