Python AES 암/복호화 아래의 코드를 사용하기 위해서 먼저 pycrypto 를 설치하셔야 합니다 $ pip install pycrypto import base64 import hashlib from Crypto.Cipher import AES BS = 16 pad = (lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS).encode()) unpad = (lambda s: s[:-ord(s[len(s)-1:])]) class AESCipher(object): def __init__(self, key): self.key = hashlib.sha256(key.encode()).digest() def encrypt(self, message): messag..