Advertisement
Guest User

Untitled

a guest
Aug 7th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. from Crypto.Cipher import AES
  2. import base64
  3. import sys
  4.  
  5. obj = AES.new('n0t_just_t00ling', AES.MODE_CBC, '7215f7c61c2edd24')
  6. ciphertext = sys.argv[1]
  7. message = obj.decrypt(base64.b64decode(ciphertext))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement