/extensions/core/serializers/SerializerBlowfish.py

https://bitbucket.org/incubaid/pylabs-core-6.0 · Python · 29 lines · 19 code · 6 blank · 4 comment · 2 complexity · 3cac743b725090b2ccf61a2bafa2ceb2 MD5 · raw file

  1. from Crypto.Cipher import Blowfish
  2. from random import randrange
  3. class SerializerBlowfish(object):
  4. # def __init__(self):
  5. # pass
  6. def dumps(self,obj,encrkey):
  7. bf=Blowfish.new(encrkey)
  8. return bf.encrypt(self.__pad_file(str(obj)))
  9. def loads(self,s,encrkey):
  10. bf=Blowfish.new(encrkey)
  11. return self.__depad_file(bf.decrypt(s))
  12. # Blowfish cipher needs 8 byte blocks to work with
  13. def __pad_file(self, data):
  14. pad_bytes = 8 - (len(data) % 8)
  15. for i in range(pad_bytes - 1): data += chr(randrange(0, 256))
  16. # final padding byte; % by 8 to get the number of padding bytes
  17. bflag = randrange(6, 248); bflag -= bflag % 8 - pad_bytes
  18. data += chr(bflag)
  19. return data
  20. def __depad_file(self, data):
  21. pad_bytes = ord(data[-1]) % 8
  22. if not pad_bytes: pad_bytes = 8
  23. return data[:-pad_bytes]