BadmanDyls
Results
1
comments of
BadmanDyls
Move the cipher object into the decrypt and encrypt functions. ✌️ ``` # encrypt with AES, encode with base64 EncodeAES = lambda c, s: base64.b64encode(c.encrypt(pad(s))) DecodeAES = lambda c, e:...