Advertisement
cmiN

sharp-hertz

Feb 25th, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. #! /usr/bin/env python
  2.  
  3.  
  4. str_cypher = "BM3aZTvv5iQAhK95EFLuz4pta" + "QA1f1/EqAOZktIz1RrwMPunDlqwww=="
  5.  
  6.  
  7. from base64 import b64decode
  8. from Crypto.Cipher import DES
  9.  
  10.  
  11. def main():
  12.     key = "Nothing!"
  13.     data = "BM3aZTvv5iQAhK95EFLuz4ptaQA1f1/EqAOZktIz1RrwMPunDlqwww=="
  14.     obj = DES.new(key, IV=key)
  15.     buf = b64decode(data)
  16.     print obj.decrypt(buf)
  17.    
  18.  
  19. if __name__ == "__main__":
  20.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement