/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
- # Python bytecode 2.7 (decompiled from Python 2.7)
- # Embedded file name: scripts/common/Lib/Crypto/Cipher/Blowfish.py
- __revision__ = '$Id$'
- from Crypto.Cipher import blockalgo
- import _Blowfish
- class BlowfishCipher(blockalgo.BlockAlgo):
- def __init__(self, key, *args, **kwargs):
- blockalgo.BlockAlgo.__init__(self, _Blowfish, key, *args, **kwargs)
- def new(key, *args, **kwargs):
- return BlowfishCipher(key, *args, **kwargs)
- MODE_ECB = 1
- MODE_CBC = 2
- MODE_CFB = 3
- MODE_PGP = 4
- MODE_OFB = 5
- MODE_CTR = 6
- MODE_OPENPGP = 7
- MODE_EAX = 9
- block_size = 8
- key_size = xrange(4, 57)