python-cryptoplus
python-cryptoplus copied to clipboard
PyCryptoPlus: a pycrypto extension written 100% in Python
On [line 454](https://github.com/doegox/python-cryptoplus/blob/master/src/CryptoPlus/Cipher/blockcipher.py#L454) of blockcipher.py, the assertion: ```python assert len(data) < 128*pow(2,20) ``` should be ```python assert len(data) < 16*pow(2,20) ``` The [NIST recommendation](http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38e.pdf) reads: > The length of the...
Per the documentation at http://packaging.python.org/en/latest/ and http://pythonhosted.org/setuptools/setuptools.html
`python_Serpent` uses pyserpent.py found on http://www.cl.cam.ac.uk/~fms27/serpent/. It is human readable but extremely slow. I replaced pyserpent.py with [serpent.py](http://www.bjrn.se/code/serpentpy.txt). Though the writer of this code [says](http://blog.bjrn.se/2008/01/truecrypt-explained.html) "These implementations are converted directly...
Hi everyone, I installed the library python-cryptoplus (downloaded here https://github.com/doegox/python-cryptoplus) and did python "setup.py install", but i have an error when i want to run IDEA.py. "C:\Users...\CryptoPlus\Cipher\blockcipher.py, line 23, in...