Home | Trees | Indices | Help |
---|
|
1 # Author: Trevor Perrin 2 # See the LICENSE file for legal information regarding use of this file. 3 4 """PyCrypto RC4 implementation.""" 5 6 from .cryptomath import * 7 from .rc4 import * 8 9 if pycryptoLoaded: 10 import Crypto.Cipher.ARC4 1113 return PyCrypto_RC4(key)14162918 RC4.__init__(self, key, "pycrypto") 19 key = bytesToString(key) 20 self.context = Crypto.Cipher.ARC4.new(key)21 25
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Thu Sep 27 16:50:13 2012 | http://epydoc.sourceforge.net |