/OldUniversityStuff/ZIKS/ezPyCrypto-0.1.1/easy/autoexec.py

https://bitbucket.org/Behemot/university-rep · Python · 70 lines · 24 code · 22 blank · 24 comment · 2 complexity · ccb8a76f774c6d9b8898c013c45faa20 MD5 · raw file

  1. #@+leo
  2. #@+node:0::@file easy/autoexec.py
  3. #@+body
  4. #import mytest as m
  5. #k = m.mykey
  6. from pdb import set_trace as trace
  7. from Crypto.Cipher import Blowfish as bf
  8. import ezPyCrypto as ez
  9. from ezPyCrypto import key
  10. k = key()
  11. #e = k._encRawPub("Hello")
  12. #d = k._decRawPub(e)
  13. #raw = "Now is the time for all good men to come to the aid of their party"
  14. raw = "abcdefghijk"
  15. #trace()
  16. #e = k.encString(raw)
  17. #d = k.decString(e)
  18. #print repr(d)
  19. #e = k.encString("Another test")
  20. #d = k.decString(e)
  21. #print repr(d)
  22. #trace()
  23. bookfile = "/bulk/books/asapersonthinketh/aapt.txt"
  24. #bookfile = "/bulk/books/RebirthingInTheNewAge/rebirthinginthenewage.txt"
  25. fd = open(bookfile)
  26. txt = fd.read()
  27. fd.close()
  28. print "Length of book text: %d" % len(txt)
  29. print "encrypting..."
  30. enc = k.encStringToAscii(txt)
  31. fd = open(bookfile+".enc", "w")
  32. fd.write(enc)
  33. fd.close()
  34. #print "decrypting..."
  35. #dec = k.decStringFromAscii(enc)
  36. keypair = k.exportKeyPrivate()
  37. # now create a new key, import the private key, and decrypt
  38. k1 = key()
  39. k1.importKey(keypair)
  40. #trace()
  41. dec = k1.decStringFromAscii(enc)
  42. if txt == dec:
  43. print "Success"
  44. else:
  45. print "fail"
  46. #@-body
  47. #@-node:0::@file easy/autoexec.py
  48. #@-leo