/gestorpsi/util/CryptographicUtils.py

https://gitlab.com/caep-unb/gestorpsi · Python · 43 lines · 11 code · 5 blank · 27 comment · 0 complexity · 18bc748716b4de3349c0a8cf719f743f MD5 · raw file

  1. # -*- coding: utf-8 -*-
  2. """
  3. Copyright (C) 2008 GestorPsi
  4. This program is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU General Public License
  6. as published by the Free Software Foundation; either version 2
  7. of the License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. """
  13. import binascii
  14. from Crypto.Cipher import Blowfish
  15. from django.conf import settings
  16. enc_obj= enc_obj= Blowfish.new(settings.SECRET_KEY)
  17. def decrypt_attrib(attrib):
  18. """
  19. This helper function I{deciphers} C{attrib} and returns it as an unicode string.
  20. @type attrib: this variable probably is a C{CharField}
  21. @param attrib: the value to be deciphered
  22. @author: Vinicius H. S. Durelli
  23. """
  24. return u'%s' % ( enc_obj.decrypt(binascii.a2b_hex(attrib))).rstrip().decode("utf-8")
  25. def encrypt_attrib(attrib):
  26. """
  27. This helper function I{encrypts} the value passed as parameter and returns the
  28. encrypted-value.
  29. @type attrib: this variable probably is a C{CharField}
  30. @param attrib: the value to be encrypted
  31. @author: Vinicius H. S. Durelli
  32. """
  33. repeat= 8 - (len(attrib.encode("utf-8")) % 8)
  34. attrib= attrib + " " * repeat
  35. attrib= binascii.b2a_hex( enc_obj.encrypt(attrib.encode("utf-8")))
  36. return attrib