Advertisement
Guest User

Untitled

a guest
May 4th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. import base64
  2.  
  3. file = open("password.txt", "w")
  4.  
  5. for line in file:
  6.     print "Encrypted: " + line + "\nDecrypted: " + base64.b64decode(line) + "\n\n"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement