Advertisement
ajithkp560

MD5 Hash Generator

May 27th, 2012
614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.62 KB | None | 0 0
  1. #This is created by AJITH KP
  2. #visit::: www.teamopenfire.com
  3. #visit::: www.pastebin.com/u/ajithkp560
  4. #Share it if you like this
  5. #Very simple program for encrypt your input to MD5 Hash
  6. #MD5 Hash Generator import hashlib
  7. import sys
  8.  
  9. print "\t################################################################"
  10. print "\t#                                        www.teamopenfire.com  #"
  11. print "\t#       ###############      ########       ############       #"
  12. print "\t#       #             #     ##      ##      #          #       #"
  13. print "\t#       ######   ######     ##      ##      #   ########       #"
  14. print "\t#            #   #          ##      ##      #   #              #"
  15. print "\t#            #   #          ##      ##      #   #####          #"
  16. print "\t#            #   #          ##      ##      #   #####          #"
  17. print "\t#            #   #          ##      ##      #   #              #"
  18. print "\t#            #   #          ##      ##      #   #              #"
  19. print "\t#            #####    [#]    ########   [#] #####              #"
  20. print "\t#                                           MD5 Hash Generator #"
  21. print "\t#                                            coded by Ajith KP #"
  22. print "\t#                          Greets to Coded32 and T.O.F members #"
  23. print "\t################################################################"
  24.  
  25. try:
  26.    
  27.     passwd = raw_input("\n\tWord: ")
  28.     hash = hashlib.md5(passwd).hexdigest()
  29.     out = passwd+" : "+hash
  30.     print "\n\t[+] "+out
  31.     print "\n\t[V] Encrypting Sucessfully;"
  32. except (KeyboardInterrupt, SystemExit):
  33.     print "\n\t[x] Session cancelled"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement