/extensions/encryption/Encryption.py

https://bitbucket.org/incubaid/pylabs-core/ · Python · 48 lines · 35 code · 7 blank · 6 comment · 6 complexity · 68af2e6fa3c7200179832478a9dfef31 MD5 · raw file

  1. from pylabs import q
  2. import hashlib
  3. import base64
  4. BLOCKSIZE = 8
  5. class Encryption(object):
  6. def __init__(self):
  7. self.__blowfish = None
  8. @property
  9. def __bw(self):
  10. if not self.__blowfish:
  11. from Crypto.Cipher import Blowfish
  12. nics = filter(lambda x: x.startswith("eth") or x.startswith("wlan"), q.system.net.getNics())
  13. if not nics:
  14. raise Exception("No nics found")
  15. nics.sort()
  16. mac = q.system.net.getMacAddress(nics[0])
  17. self.__blowfish = Blowfish.new(mac)
  18. return self.__blowfish
  19. def encrypt(self, word):
  20. """
  21. Encrypts the given word so only the decrypt method on the same machine can decrypt it
  22. """
  23. extra = (len(word) + 2) % BLOCKSIZE
  24. padding = 0
  25. if extra:
  26. padding = BLOCKSIZE - extra
  27. word = "%d:%s" % (padding, word) + "\0" * padding
  28. return "___%s" % base64.b64encode(self.__bw.encrypt(word))
  29. def decrypt(self, cypher):
  30. """
  31. Decrypt the given cypher returned from the encrypt
  32. """
  33. if not cypher.startswith("___"):
  34. raise ValueError("Invalid cypher")
  35. cypher = cypher[3:]
  36. word = self.__bw.decrypt(base64.b64decode(cypher))
  37. padding, _, word = word.partition(":")
  38. padding = int(padding)
  39. if padding:
  40. word = word[:-padding]
  41. return word