Шифрование AES в Python отличается от iOS - PullRequest
5 голосов
/ 23 января 2012

Я пытаюсь зашифровать строку в IOS и затем отправить ее на сервер TCP.Python-версия кода и iOS-версии показаны ниже.Пожалуйста, смотрите результаты обеих версий.Они выглядят довольно похожими, но длины разные, и я не знаю причину.Кто-нибудь может это проверить, в чем может быть причина?

Обратите внимание, что PADDING в скрипте Python следует отбросить, так как я уже дал длину текста 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

ВЫХОД:

Зашифрованная строка: 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 );
1016 * 1015: АПД: данные 1015 * AU: 1015 * AU: 1014
57AayWF4jKYx7KzGkwudIKNlwA + HErrmiy1Z0szzZds =

1 Ответ

5 голосов
/ 23 января 2012

ОК, вот оно. Спасибо Сарнольд за подсказку:)

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 ==

Расшифрованная строка: aaaaaaaaaaaaaaaa

* Изменены CESptions AES на kCCOptionECBMode в iOS. *

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

А теперь вывод:

Вывод iOS:

Данные AES: aaaaaaaaaaaaaaaa
C9pEG6g8ge76xt2q9XLbpw ==

...