/common/Lib/Crypto/Cipher/Blowfish.py

https://bitbucket.org/Armagomen/wot_decompile · Python · 26 lines · 18 code · 6 blank · 2 comment · 0 complexity · e91332cb893056f9024bc6fd86cdd48d MD5 · raw file

  1. # Python bytecode 2.7 (decompiled from Python 2.7)
  2. # Embedded file name: scripts/common/Lib/Crypto/Cipher/Blowfish.py
  3. __revision__ = '$Id$'
  4. from Crypto.Cipher import blockalgo
  5. import _Blowfish
  6. class BlowfishCipher(blockalgo.BlockAlgo):
  7. def __init__(self, key, *args, **kwargs):
  8. blockalgo.BlockAlgo.__init__(self, _Blowfish, key, *args, **kwargs)
  9. def new(key, *args, **kwargs):
  10. return BlowfishCipher(key, *args, **kwargs)
  11. MODE_ECB = 1
  12. MODE_CBC = 2
  13. MODE_CFB = 3
  14. MODE_PGP = 4
  15. MODE_OFB = 5
  16. MODE_CTR = 6
  17. MODE_OPENPGP = 7
  18. MODE_EAX = 9
  19. block_size = 8
  20. key_size = xrange(4, 57)