Skip to content

Instantly share code, notes, and snippets.

@Bashorun97
Created September 14, 2022 17:32
Show Gist options
  • Save Bashorun97/4170b25a9e0049a07f897307704051e7 to your computer and use it in GitHub Desktop.
Save Bashorun97/4170b25a9e0049a07f897307704051e7 to your computer and use it in GitHub Desktop.
AES encryption and decryption
import base64
import hashlib
import hmac
from Crypto import Random
from Crypto.Cipher import AES
class EncryptDecrypt:
def __init__(self, encryption_key):
self.bs = AES.block_size
self.key = hashlib.sha256(encryption_key.encode()).digest()
def encrypt(self, raw):
raw = self._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.encode())).decode()
def decrypt(self, enc):
enc = base64.b64decode(enc)
iv = enc[: AES.block_size]
cipher = AES.new(self.key, AES.MODE_CBC, iv)
return self._unpad(cipher.decrypt(enc[AES.block_size :])).decode("utf-8")
def _pad(self, s):
return s + (self.bs - len(s) % self.bs) * chr(self.bs - len(s) % self.bs)
@staticmethod
def _unpad(s):
return s[: -ord(s[len(s) - 1 :])]
def create_signature(secret, message):
digest = hmac.new(
key=secret.encode("utf-8"), msg=message, digestmod=hashlib.sha512
).hexdigest()
return digest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment