]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commit
first cut at creating allmydata.Crypto, starting with python-amycrypto-2.0.1.allmydat...
authorBrian Warner <warner@lothar.com>
Thu, 14 Dec 2006 10:25:30 +0000 (03:25 -0700)
committerBrian Warner <warner@lothar.com>
Thu, 14 Dec 2006 10:25:30 +0000 (03:25 -0700)
commit8a3af8827ab3490576d045b7a9c87b7f1e410552
tree55f9e411ade5d3ce91bdc979a37b58887ee39156
parentbc4e7aad70eadbf44e29b6b917f70cf15933600e
first cut at creating allmydata.Crypto, starting with python-amycrypto-2.0.1.allmydata2 (with working CTR mode)
80 files changed:
Crypto/ACKS [new file with mode: 0644]
Crypto/ChangeLog [new file with mode: 0644]
Crypto/Cipher/__init__.py [new file with mode: 0644]
Crypto/Demo/README [new file with mode: 0644]
Crypto/Demo/chaum.py [new file with mode: 0644]
Crypto/Demo/cipher [new file with mode: 0644]
Crypto/Demo/enc.py [new file with mode: 0644]
Crypto/Demo/secimp/README [new file with mode: 0644]
Crypto/Demo/secimp/secimp.py [new file with mode: 0644]
Crypto/Demo/secimp/sign.py [new file with mode: 0644]
Crypto/Demo/secimp/testkey.py [new file with mode: 0644]
Crypto/Doc/pycrypt.tex [new file with mode: 0644]
Crypto/Hash/HMAC.py [new file with mode: 0644]
Crypto/Hash/MD5.py [new file with mode: 0644]
Crypto/Hash/SHA.py [new file with mode: 0644]
Crypto/Hash/__init__.py [new file with mode: 0644]
Crypto/LICENSE [new file with mode: 0644]
Crypto/MANIFEST [new file with mode: 0644]
Crypto/PKG-INFO [new file with mode: 0644]
Crypto/Protocol/AllOrNothing.py [new file with mode: 0644]
Crypto/Protocol/Chaffing.py [new file with mode: 0644]
Crypto/Protocol/__init__.py [new file with mode: 0644]
Crypto/PublicKey/DSA.py [new file with mode: 0644]
Crypto/PublicKey/ElGamal.py [new file with mode: 0644]
Crypto/PublicKey/RSA.py [new file with mode: 0644]
Crypto/PublicKey/__init__.py [new file with mode: 0644]
Crypto/PublicKey/pubkey.py [new file with mode: 0644]
Crypto/PublicKey/qNEW.py [new file with mode: 0644]
Crypto/PublicKey/test/rsa_speed.py [new file with mode: 0644]
Crypto/README [new file with mode: 0644]
Crypto/TODO [new file with mode: 0644]
Crypto/Util/RFC1751.py [new file with mode: 0644]
Crypto/Util/__init__.py [new file with mode: 0644]
Crypto/Util/bench.py [new file with mode: 0644]
Crypto/Util/number.py [new file with mode: 0644]
Crypto/Util/randpool.py [new file with mode: 0644]
Crypto/Util/test.py [new file with mode: 0644]
Crypto/Util/test/prime_speed.py [new file with mode: 0644]
Crypto/__init__.py [new file with mode: 0644]
Crypto/bench.py [new file with mode: 0644]
Crypto/debian/README.Debian [new file with mode: 0644]
Crypto/debian/changelog [new file with mode: 0644]
Crypto/debian/compat [new file with mode: 0644]
Crypto/debian/control [new file with mode: 0644]
Crypto/debian/copyright [new file with mode: 0644]
Crypto/debian/dirs [new file with mode: 0644]
Crypto/debian/pathmangle.sh [new file with mode: 0644]
Crypto/debian/python2.3-amdcrypto.docs [new file with mode: 0644]
Crypto/debian/python2.4-amdcrypto.docs [new file with mode: 0644]
Crypto/debian/rules [new file with mode: 0644]
Crypto/setup.py [new file with mode: 0644]
Crypto/src/AES.c [new file with mode: 0644]
Crypto/src/ARC2.c [new file with mode: 0644]
Crypto/src/ARC4.c [new file with mode: 0644]
Crypto/src/Blowfish.c [new file with mode: 0644]
Crypto/src/CAST.c [new file with mode: 0644]
Crypto/src/DES.c [new file with mode: 0644]
Crypto/src/DES3.c [new file with mode: 0644]
Crypto/src/MD2.c [new file with mode: 0644]
Crypto/src/MD4.c [new file with mode: 0644]
Crypto/src/SHA256.c [new file with mode: 0644]
Crypto/src/XOR.c [new file with mode: 0644]
Crypto/src/_dsa.c [new file with mode: 0644]
Crypto/src/_fastmath.c [new file with mode: 0644]
Crypto/src/_rsa.c [new file with mode: 0644]
Crypto/src/block_template.c [new file with mode: 0644]
Crypto/src/cast5.c [new file with mode: 0644]
Crypto/src/hash_template.c [new file with mode: 0644]
Crypto/src/stream_template.c [new file with mode: 0644]
Crypto/src/winrand.c [new file with mode: 0644]
Crypto/test.py [new file with mode: 0644]
Crypto/test/template [new file with mode: 0644]
Crypto/test/test_chaffing.py [new file with mode: 0644]
Crypto/test/test_hashes.py [new file with mode: 0644]
Crypto/test/test_number.py [new file with mode: 0644]
Crypto/test/test_publickey.py [new file with mode: 0644]
Crypto/test/test_randpool.py [new file with mode: 0644]
Crypto/test/test_rfc1751.py [new file with mode: 0644]
Crypto/test/testdata.py [new file with mode: 0644]
setup.py