2012-09-24 4 views
10

나는 AES CBC 암호 해독을 Python으로 구현하려고 시도 해왔다. 암호화 된 텍스트는 16 바이트의 배수가 아니기 때문에 패딩이 필요했습니다. "홀수 길이 문자열 형식 오류"PKCS5 Python으로 AES 암호 해독 패딩

을하지만 PyCrypto 파이썬에서 PKCS5을 구현하기위한 적절한 참조를 찾을 수 없습니다 패딩없이,이 오류가

을 떠올랐다. 이것을 구현할 수있는 명령이 있습니까? 감사합니다.

마커스의 제안을 살펴본 후에 저는 이것을했습니다.

내 목표는 실제로이 코드를 사용하여 16 진수 메시지 (128 바이트)를 해독하는 것입니다. 그러나 출력은 "? :"로 매우 작으며 unpad 명령은 해당 바이트를 삭제합니다. 이것은 코드입니다.

from Crypto.Cipher import AES 
BS = 16 
pad = lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS) 
unpad = lambda s : s[0:-ord(s[-1])] 

class AESCipher: 
    def __init__(self, key): 
    self.key = key 

    def encrypt(self, raw): 
     raw = pad(raw) 
     iv = raw[:16] 
     raw=raw[16:] 
     #iv = Random.new().read(AES.block_size) 
     cipher = AES.new(self.key, AES.MODE_CBC, iv) 
     return (iv + cipher.encrypt(raw)).encode("hex") 

    def decrypt(self, enc): 
     iv = enc[:16] 
     enc= enc[16:] 
     cipher = AES.new(self.key, AES.MODE_CBC, iv) 
     return unpad(cipher.decrypt(enc)) 

mode = AES.MODE_CBC 
key = "140b41b22a29beb4061bda66b6747e14" 
ciphertext = "4ca00ff4c898d61e1edbf1800618fb2828a226d160dad07883d04e008a7897ee2e4b7465d5290d0c0e6c6822236e1daafb94ffe0c5da05d9476be028ad7c1d81"; 
key=key[:32] 
decryptor = AESCipher(key) 
decryptor.__init__(key) 
plaintext = decryptor.decrypt(ciphertext) 
print plaintext 
+1

http://stackoverflow.com/questions/12524994/encrypt-decrypt-using-pycrypto-aes-256/12525165#12525165, 대답 패딩 기능 : – Marcus

답변

18

암호를 해독하기 전에 16 진수로 인코딩 된 값을 디코딩해야합니다. 16 진수로 인코딩 된 키로 작업하려면, 마찬가지로 디코드하십시오 ..

여기가 올바르게 작동합니다.

from Crypto.Cipher import AES 
from Crypto import Random 

BS = 16 
pad = lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS) 
unpad = lambda s : s[0:-ord(s[-1])] 

class AESCipher: 
    def __init__(self, key): 
     """ 
     Requires hex encoded param as a key 
     """ 
     self.key = key.decode("hex") 

    def encrypt(self, raw): 
     """ 
     Returns hex encoded encrypted value! 
     """ 
     raw = pad(raw) 
     iv = Random.new().read(AES.block_size); 
     cipher = AES.new(self.key, AES.MODE_CBC, iv) 
     return (iv + cipher.encrypt(raw)).encode("hex") 

    def decrypt(self, enc): 
     """ 
     Requires hex encoded param to decrypt 
     """ 
     enc = enc.decode("hex") 
     iv = enc[:16] 
     enc= enc[16:] 
     cipher = AES.new(self.key, AES.MODE_CBC, iv) 
     return unpad(cipher.decrypt(enc)) 

if __name__== "__main__": 
    key = "140b41b22a29beb4061bda66b6747e14" 
    ciphertext = "4ca00ff4c898d61e1edbf1800618fb2828a226d160dad07883d04e008a7897ee2e4b7465d5290d0c0e6c6822236e1daafb94ffe0c5da05d9476be028ad7c1d81" 
    key=key[:32] 
    decryptor = AESCipher(key) 
    plaintext = decryptor.decrypt(ciphertext) 
    print "%s" % plaintext 
+0

도움이 될이 ** ** 'ciphertext = ...'의 끝에는 아마도 ... 없어야합니다. – kravietz