Created
April 18, 2013 17:44
-
-
Save pjama/5414727 to your computer and use it in GitHub Desktop.
AES encryption / decryption module. Based on SO response, http://stackoverflow.com/a/12525165
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from Crypto import Random | |
from Crypto.Cipher import AES | |
import base64 | |
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 = Random.new().read(AES.block_size) | |
cipher = AES.new(self.key, AES.MODE_CBC, iv) | |
return base64.b64encode(iv + cipher.encrypt(raw)) | |
def decrypt(self, enc): | |
enc = base64.b64decode(enc) | |
iv = enc[:16] | |
cipher = AES.new(self.key, AES.MODE_CBC, iv) | |
return unpad(cipher.decrypt(enc[16:])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment