Home | Trees | Indices | Help |
---|
|
1 # Author: Trevor Perrin 2 # See the LICENSE file for legal information regarding use of this file. 3 4 """Abstract class for RC4.""" 5 6219 if len(keyBytes) < 16 or len(keyBytes) > 256: 10 raise ValueError() 11 self.isBlockCipher = False 12 self.isAEAD = False 13 self.name = "rc4" 14 self.implementation = implementation15 18
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Thu Jan 14 19:33:33 2016 | http://epydoc.sourceforge.net |