├── .gitattributes ├── .gitignore ├── .travis.yml ├── COPYING.GPL ├── COPYING.MIT.txt ├── COPYING.SPL.txt ├── COPYING.TGPPL.rst ├── MANIFEST.in ├── NEWS.rst ├── README.ed25519.rst ├── README.rst ├── _doubleloadtester.cpp ├── copyright ├── misc ├── aside │ └── test-sha256.cpp ├── build_helpers │ ├── _build-wheels.sh │ ├── build-manylinux-wheels.sh │ └── show-tool-versions.py ├── coding_helpers │ └── python.supp └── dependencies │ └── setuptools-0.6c14dev.egg ├── pycryptopp.egg-info └── stdeb.cfg ├── setup.cfg ├── setup.py ├── src-cryptopp ├── Doxyfile ├── GNUmakefile ├── License.txt ├── Readme.txt ├── TestVectors │ ├── Readme.txt │ ├── aes.txt │ ├── all.txt │ ├── blake2.txt │ ├── blake2b.txt │ ├── blake2s.txt │ ├── camellia.txt │ ├── ccm.txt │ ├── chacha.txt │ ├── cmac.txt │ ├── dlies.txt │ ├── dsa.txt │ ├── dsa_1363.txt │ ├── eax.txt │ ├── esign.txt │ ├── gcm.txt │ ├── hmac.txt │ ├── mars.txt │ ├── nr.txt │ ├── panama.txt │ ├── rsa_oaep.txt │ ├── rsa_pkcs1_1_5.txt │ ├── rsa_pss.txt │ ├── rw.txt │ ├── salsa.txt │ ├── seal.txt │ ├── seed.txt │ ├── sha.txt │ ├── shacal2.txt │ ├── sosemanuk.txt │ ├── tea.txt │ ├── ttmac.txt │ ├── vmac.txt │ └── whrlpool.txt ├── adhoc.cpp.proto ├── aes.h ├── algebra.cpp ├── algebra.h ├── algparam.cpp ├── algparam.h ├── argnames.h ├── asn.cpp ├── asn.h ├── authenc.h ├── basecode.cpp ├── basecode.h ├── blake2.cpp ├── blake2.h ├── cbcmac.h ├── ccm.h ├── chacha.cpp ├── chacha.h ├── channels.h ├── cmac.h ├── config.h ├── cpu.cpp ├── cpu.h ├── cryptest.sln ├── cryptlib.cpp ├── cryptlib.h ├── cryptopp.rc ├── des.cpp ├── des.h ├── dessp.cpp ├── dh.h ├── dll.cpp ├── dll.h ├── dsa.cpp ├── dsa.h ├── ec2n.cpp ├── ec2n.h ├── eccrypto.cpp ├── eccrypto.h ├── ecp.cpp ├── ecp.h ├── emsa2.h ├── eprecomp.cpp ├── eprecomp.h ├── fhmqv.h ├── files.h ├── filters.cpp ├── filters.h ├── fips140.cpp ├── fips140.h ├── fltrimpl.h ├── gcm.h ├── gf2n.cpp ├── gf2n.h ├── gfpcrypt.cpp ├── gfpcrypt.h ├── hex.cpp ├── hex.h ├── hmac.cpp ├── hmac.h ├── hmqv.h ├── hrtimer.cpp ├── hrtimer.h ├── integer.cpp ├── integer.h ├── iterhash.cpp ├── iterhash.h ├── misc.cpp ├── misc.h ├── modarith.h ├── modes.cpp ├── modes.h ├── modexppc.h ├── mqueue.cpp ├── mqueue.h ├── mqv.h ├── nbtheory.cpp ├── nbtheory.h ├── oaep.cpp ├── oaep.h ├── oids.h ├── osrng.cpp ├── osrng.h ├── pch.h ├── pkcspad.cpp ├── pkcspad.h ├── pssr.cpp ├── pssr.h ├── pubkey.cpp ├── pubkey.h ├── queue.cpp ├── queue.h ├── randpool.cpp ├── randpool.h ├── rdtables.cpp ├── rijndael.cpp ├── rijndael.h ├── rng.cpp ├── rng.h ├── rsa.cpp ├── rsa.h ├── rw.h ├── salsa.cpp ├── salsa.h ├── secblock.h ├── seckey.h ├── serpent.cpp ├── serpent.h ├── serpentp.h ├── sha.cpp ├── sha.h ├── simple.h ├── skipjack.h ├── smartptr.h ├── sosemanuk.cpp ├── sosemanuk.h ├── stdcpp.h ├── strciphr.cpp ├── strciphr.h ├── tiger.cpp ├── tiger.h ├── tigertab.cpp ├── trap.h ├── trdlocal.h ├── words.h ├── x64dll.asm └── x64masm.asm ├── src-ed25519 ├── glue │ └── ed25519module.c └── supercop-ref │ ├── Makefile │ ├── api.h │ ├── crypto_int32.h │ ├── crypto_sign.h │ ├── crypto_uint32.h │ ├── crypto_verify_32.h │ ├── ed25519.c │ ├── fe25519.c │ ├── fe25519.h │ ├── ge25519.c │ ├── ge25519.h │ ├── ge25519_base.data │ ├── sc25519.c │ ├── sc25519.h │ ├── sha512-blocks.c │ ├── sha512-hash.c │ ├── sha512.h │ ├── test.c │ └── verify.c ├── src └── pycryptopp │ ├── __init__.py │ ├── _pycryptoppmodule.cpp │ ├── bench │ ├── __init__.py │ ├── bench_algs.py │ ├── bench_ciphers.py │ ├── bench_hashes.py │ ├── bench_sigs.py │ └── common.py │ ├── cipher │ ├── __init__.py │ ├── aes.py │ ├── aesmodule.cpp │ ├── aesmodule.hpp │ ├── xsalsa20.py │ ├── xsalsa20module.cpp │ └── xsalsa20module.hpp │ ├── hash │ ├── __init__.py │ ├── sha256.py │ ├── sha256module.cpp │ └── sha256module.hpp │ ├── publickey │ ├── __init__.py │ ├── ecdsa.py │ ├── ecdsamodule.cpp │ ├── ecdsamodule.hpp │ ├── ed25519 │ │ ├── __init__.py │ │ ├── _version.py │ │ └── keys.py │ ├── rsa.py │ ├── rsamodule.cpp │ └── rsamodule.hpp │ ├── test │ ├── __init__.py │ ├── test_aes.py │ ├── test_ecdsa.py │ ├── test_ed25519.py │ ├── test_ed25519_kat.py │ ├── test_from_Nikratio.py │ ├── test_rsa.py │ ├── test_sha256.py │ └── test_xsalsa20.py │ └── testvectors │ ├── KAT_AES │ ├── ECBGFSbox128e.txt │ ├── ECBGFSbox256e.txt │ ├── ECBKeySbox128e.txt │ ├── ECBKeySbox256e.txt │ ├── ECBVarKey128e.txt │ ├── ECBVarKey256e.txt │ ├── ECBVarTxt128e.txt │ └── ECBVarTxt256e.txt │ ├── SHA256LongMsg.txt │ ├── SHA256Monte.txt │ ├── SHA256ShortMsg.txt │ ├── kat-ed25519-short.txt │ ├── kat-ed25519.txt │ └── xsalsa20.txt └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | pycryptopp/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /COPYING.MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/COPYING.MIT.txt -------------------------------------------------------------------------------- /COPYING.SPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/COPYING.SPL.txt -------------------------------------------------------------------------------- /COPYING.TGPPL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/COPYING.TGPPL.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/NEWS.rst -------------------------------------------------------------------------------- /README.ed25519.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/README.ed25519.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/README.rst -------------------------------------------------------------------------------- /_doubleloadtester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/_doubleloadtester.cpp -------------------------------------------------------------------------------- /copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/copyright -------------------------------------------------------------------------------- /misc/aside/test-sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/misc/aside/test-sha256.cpp -------------------------------------------------------------------------------- /misc/build_helpers/_build-wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/misc/build_helpers/_build-wheels.sh -------------------------------------------------------------------------------- /misc/build_helpers/build-manylinux-wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/misc/build_helpers/build-manylinux-wheels.sh -------------------------------------------------------------------------------- /misc/build_helpers/show-tool-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/misc/build_helpers/show-tool-versions.py -------------------------------------------------------------------------------- /misc/coding_helpers/python.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/misc/coding_helpers/python.supp -------------------------------------------------------------------------------- /misc/dependencies/setuptools-0.6c14dev.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/misc/dependencies/setuptools-0.6c14dev.egg -------------------------------------------------------------------------------- /pycryptopp.egg-info/stdeb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/pycryptopp.egg-info/stdeb.cfg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/setup.py -------------------------------------------------------------------------------- /src-cryptopp/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/Doxyfile -------------------------------------------------------------------------------- /src-cryptopp/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/GNUmakefile -------------------------------------------------------------------------------- /src-cryptopp/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/License.txt -------------------------------------------------------------------------------- /src-cryptopp/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/Readme.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/Readme.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/aes.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/all.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/blake2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/blake2.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/blake2b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/blake2b.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/blake2s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/blake2s.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/camellia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/camellia.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/ccm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/ccm.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/chacha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/chacha.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/cmac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/cmac.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/dlies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/dlies.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/dsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/dsa.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/dsa_1363.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/dsa_1363.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/eax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/eax.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/esign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/esign.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/gcm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/gcm.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/hmac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/hmac.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/mars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/mars.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/nr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/nr.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/panama.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/panama.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/rsa_oaep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/rsa_oaep.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/rsa_pkcs1_1_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/rsa_pkcs1_1_5.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/rsa_pss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/rsa_pss.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/rw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/rw.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/salsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/salsa.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/seal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/seal.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/seed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/seed.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/sha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/sha.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/shacal2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/shacal2.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/sosemanuk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/sosemanuk.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/tea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/tea.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/ttmac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/ttmac.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/vmac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/vmac.txt -------------------------------------------------------------------------------- /src-cryptopp/TestVectors/whrlpool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/TestVectors/whrlpool.txt -------------------------------------------------------------------------------- /src-cryptopp/adhoc.cpp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/adhoc.cpp.proto -------------------------------------------------------------------------------- /src-cryptopp/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/aes.h -------------------------------------------------------------------------------- /src-cryptopp/algebra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/algebra.cpp -------------------------------------------------------------------------------- /src-cryptopp/algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/algebra.h -------------------------------------------------------------------------------- /src-cryptopp/algparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/algparam.cpp -------------------------------------------------------------------------------- /src-cryptopp/algparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/algparam.h -------------------------------------------------------------------------------- /src-cryptopp/argnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/argnames.h -------------------------------------------------------------------------------- /src-cryptopp/asn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/asn.cpp -------------------------------------------------------------------------------- /src-cryptopp/asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/asn.h -------------------------------------------------------------------------------- /src-cryptopp/authenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/authenc.h -------------------------------------------------------------------------------- /src-cryptopp/basecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/basecode.cpp -------------------------------------------------------------------------------- /src-cryptopp/basecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/basecode.h -------------------------------------------------------------------------------- /src-cryptopp/blake2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/blake2.cpp -------------------------------------------------------------------------------- /src-cryptopp/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/blake2.h -------------------------------------------------------------------------------- /src-cryptopp/cbcmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cbcmac.h -------------------------------------------------------------------------------- /src-cryptopp/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/ccm.h -------------------------------------------------------------------------------- /src-cryptopp/chacha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/chacha.cpp -------------------------------------------------------------------------------- /src-cryptopp/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/chacha.h -------------------------------------------------------------------------------- /src-cryptopp/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/channels.h -------------------------------------------------------------------------------- /src-cryptopp/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cmac.h -------------------------------------------------------------------------------- /src-cryptopp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/config.h -------------------------------------------------------------------------------- /src-cryptopp/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cpu.cpp -------------------------------------------------------------------------------- /src-cryptopp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cpu.h -------------------------------------------------------------------------------- /src-cryptopp/cryptest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cryptest.sln -------------------------------------------------------------------------------- /src-cryptopp/cryptlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cryptlib.cpp -------------------------------------------------------------------------------- /src-cryptopp/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cryptlib.h -------------------------------------------------------------------------------- /src-cryptopp/cryptopp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/cryptopp.rc -------------------------------------------------------------------------------- /src-cryptopp/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/des.cpp -------------------------------------------------------------------------------- /src-cryptopp/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/des.h -------------------------------------------------------------------------------- /src-cryptopp/dessp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/dessp.cpp -------------------------------------------------------------------------------- /src-cryptopp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/dh.h -------------------------------------------------------------------------------- /src-cryptopp/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/dll.cpp -------------------------------------------------------------------------------- /src-cryptopp/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/dll.h -------------------------------------------------------------------------------- /src-cryptopp/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/dsa.cpp -------------------------------------------------------------------------------- /src-cryptopp/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/dsa.h -------------------------------------------------------------------------------- /src-cryptopp/ec2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/ec2n.cpp -------------------------------------------------------------------------------- /src-cryptopp/ec2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/ec2n.h -------------------------------------------------------------------------------- /src-cryptopp/eccrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/eccrypto.cpp -------------------------------------------------------------------------------- /src-cryptopp/eccrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/eccrypto.h -------------------------------------------------------------------------------- /src-cryptopp/ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/ecp.cpp -------------------------------------------------------------------------------- /src-cryptopp/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/ecp.h -------------------------------------------------------------------------------- /src-cryptopp/emsa2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/emsa2.h -------------------------------------------------------------------------------- /src-cryptopp/eprecomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/eprecomp.cpp -------------------------------------------------------------------------------- /src-cryptopp/eprecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/eprecomp.h -------------------------------------------------------------------------------- /src-cryptopp/fhmqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/fhmqv.h -------------------------------------------------------------------------------- /src-cryptopp/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/files.h -------------------------------------------------------------------------------- /src-cryptopp/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/filters.cpp -------------------------------------------------------------------------------- /src-cryptopp/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/filters.h -------------------------------------------------------------------------------- /src-cryptopp/fips140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/fips140.cpp -------------------------------------------------------------------------------- /src-cryptopp/fips140.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/fips140.h -------------------------------------------------------------------------------- /src-cryptopp/fltrimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/fltrimpl.h -------------------------------------------------------------------------------- /src-cryptopp/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/gcm.h -------------------------------------------------------------------------------- /src-cryptopp/gf2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/gf2n.cpp -------------------------------------------------------------------------------- /src-cryptopp/gf2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/gf2n.h -------------------------------------------------------------------------------- /src-cryptopp/gfpcrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/gfpcrypt.cpp -------------------------------------------------------------------------------- /src-cryptopp/gfpcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/gfpcrypt.h -------------------------------------------------------------------------------- /src-cryptopp/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hex.cpp -------------------------------------------------------------------------------- /src-cryptopp/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hex.h -------------------------------------------------------------------------------- /src-cryptopp/hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hmac.cpp -------------------------------------------------------------------------------- /src-cryptopp/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hmac.h -------------------------------------------------------------------------------- /src-cryptopp/hmqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hmqv.h -------------------------------------------------------------------------------- /src-cryptopp/hrtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hrtimer.cpp -------------------------------------------------------------------------------- /src-cryptopp/hrtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/hrtimer.h -------------------------------------------------------------------------------- /src-cryptopp/integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/integer.cpp -------------------------------------------------------------------------------- /src-cryptopp/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/integer.h -------------------------------------------------------------------------------- /src-cryptopp/iterhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/iterhash.cpp -------------------------------------------------------------------------------- /src-cryptopp/iterhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/iterhash.h -------------------------------------------------------------------------------- /src-cryptopp/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/misc.cpp -------------------------------------------------------------------------------- /src-cryptopp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/misc.h -------------------------------------------------------------------------------- /src-cryptopp/modarith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/modarith.h -------------------------------------------------------------------------------- /src-cryptopp/modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/modes.cpp -------------------------------------------------------------------------------- /src-cryptopp/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/modes.h -------------------------------------------------------------------------------- /src-cryptopp/modexppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/modexppc.h -------------------------------------------------------------------------------- /src-cryptopp/mqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/mqueue.cpp -------------------------------------------------------------------------------- /src-cryptopp/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/mqueue.h -------------------------------------------------------------------------------- /src-cryptopp/mqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/mqv.h -------------------------------------------------------------------------------- /src-cryptopp/nbtheory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/nbtheory.cpp -------------------------------------------------------------------------------- /src-cryptopp/nbtheory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/nbtheory.h -------------------------------------------------------------------------------- /src-cryptopp/oaep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/oaep.cpp -------------------------------------------------------------------------------- /src-cryptopp/oaep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/oaep.h -------------------------------------------------------------------------------- /src-cryptopp/oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/oids.h -------------------------------------------------------------------------------- /src-cryptopp/osrng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/osrng.cpp -------------------------------------------------------------------------------- /src-cryptopp/osrng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/osrng.h -------------------------------------------------------------------------------- /src-cryptopp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pch.h -------------------------------------------------------------------------------- /src-cryptopp/pkcspad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pkcspad.cpp -------------------------------------------------------------------------------- /src-cryptopp/pkcspad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pkcspad.h -------------------------------------------------------------------------------- /src-cryptopp/pssr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pssr.cpp -------------------------------------------------------------------------------- /src-cryptopp/pssr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pssr.h -------------------------------------------------------------------------------- /src-cryptopp/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pubkey.cpp -------------------------------------------------------------------------------- /src-cryptopp/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/pubkey.h -------------------------------------------------------------------------------- /src-cryptopp/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/queue.cpp -------------------------------------------------------------------------------- /src-cryptopp/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/queue.h -------------------------------------------------------------------------------- /src-cryptopp/randpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/randpool.cpp -------------------------------------------------------------------------------- /src-cryptopp/randpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/randpool.h -------------------------------------------------------------------------------- /src-cryptopp/rdtables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rdtables.cpp -------------------------------------------------------------------------------- /src-cryptopp/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rijndael.cpp -------------------------------------------------------------------------------- /src-cryptopp/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rijndael.h -------------------------------------------------------------------------------- /src-cryptopp/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rng.cpp -------------------------------------------------------------------------------- /src-cryptopp/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rng.h -------------------------------------------------------------------------------- /src-cryptopp/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rsa.cpp -------------------------------------------------------------------------------- /src-cryptopp/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rsa.h -------------------------------------------------------------------------------- /src-cryptopp/rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/rw.h -------------------------------------------------------------------------------- /src-cryptopp/salsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/salsa.cpp -------------------------------------------------------------------------------- /src-cryptopp/salsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/salsa.h -------------------------------------------------------------------------------- /src-cryptopp/secblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/secblock.h -------------------------------------------------------------------------------- /src-cryptopp/seckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/seckey.h -------------------------------------------------------------------------------- /src-cryptopp/serpent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/serpent.cpp -------------------------------------------------------------------------------- /src-cryptopp/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/serpent.h -------------------------------------------------------------------------------- /src-cryptopp/serpentp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/serpentp.h -------------------------------------------------------------------------------- /src-cryptopp/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/sha.cpp -------------------------------------------------------------------------------- /src-cryptopp/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/sha.h -------------------------------------------------------------------------------- /src-cryptopp/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/simple.h -------------------------------------------------------------------------------- /src-cryptopp/skipjack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/skipjack.h -------------------------------------------------------------------------------- /src-cryptopp/smartptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/smartptr.h -------------------------------------------------------------------------------- /src-cryptopp/sosemanuk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/sosemanuk.cpp -------------------------------------------------------------------------------- /src-cryptopp/sosemanuk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/sosemanuk.h -------------------------------------------------------------------------------- /src-cryptopp/stdcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/stdcpp.h -------------------------------------------------------------------------------- /src-cryptopp/strciphr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/strciphr.cpp -------------------------------------------------------------------------------- /src-cryptopp/strciphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/strciphr.h -------------------------------------------------------------------------------- /src-cryptopp/tiger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/tiger.cpp -------------------------------------------------------------------------------- /src-cryptopp/tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/tiger.h -------------------------------------------------------------------------------- /src-cryptopp/tigertab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/tigertab.cpp -------------------------------------------------------------------------------- /src-cryptopp/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/trap.h -------------------------------------------------------------------------------- /src-cryptopp/trdlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/trdlocal.h -------------------------------------------------------------------------------- /src-cryptopp/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/words.h -------------------------------------------------------------------------------- /src-cryptopp/x64dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/x64dll.asm -------------------------------------------------------------------------------- /src-cryptopp/x64masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-cryptopp/x64masm.asm -------------------------------------------------------------------------------- /src-ed25519/glue/ed25519module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/glue/ed25519module.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/Makefile -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/api.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/crypto_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/crypto_int32.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/crypto_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/crypto_sign.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/crypto_uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/crypto_uint32.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/crypto_verify_32.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/ed25519.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/fe25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/fe25519.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/fe25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/fe25519.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/ge25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/ge25519.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/ge25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/ge25519.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/ge25519_base.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/ge25519_base.data -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/sc25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/sc25519.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/sc25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/sc25519.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/sha512-blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/sha512-blocks.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/sha512-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/sha512-hash.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/sha512.h -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/test.c -------------------------------------------------------------------------------- /src-ed25519/supercop-ref/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src-ed25519/supercop-ref/verify.c -------------------------------------------------------------------------------- /src/pycryptopp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/__init__.py -------------------------------------------------------------------------------- /src/pycryptopp/_pycryptoppmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/_pycryptoppmodule.cpp -------------------------------------------------------------------------------- /src/pycryptopp/bench/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pycryptopp/bench/bench_algs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/bench/bench_algs.py -------------------------------------------------------------------------------- /src/pycryptopp/bench/bench_ciphers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/bench/bench_ciphers.py -------------------------------------------------------------------------------- /src/pycryptopp/bench/bench_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/bench/bench_hashes.py -------------------------------------------------------------------------------- /src/pycryptopp/bench/bench_sigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/bench/bench_sigs.py -------------------------------------------------------------------------------- /src/pycryptopp/bench/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/bench/common.py -------------------------------------------------------------------------------- /src/pycryptopp/cipher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/__init__.py -------------------------------------------------------------------------------- /src/pycryptopp/cipher/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/aes.py -------------------------------------------------------------------------------- /src/pycryptopp/cipher/aesmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/aesmodule.cpp -------------------------------------------------------------------------------- /src/pycryptopp/cipher/aesmodule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/aesmodule.hpp -------------------------------------------------------------------------------- /src/pycryptopp/cipher/xsalsa20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/xsalsa20.py -------------------------------------------------------------------------------- /src/pycryptopp/cipher/xsalsa20module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/xsalsa20module.cpp -------------------------------------------------------------------------------- /src/pycryptopp/cipher/xsalsa20module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/cipher/xsalsa20module.hpp -------------------------------------------------------------------------------- /src/pycryptopp/hash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/hash/__init__.py -------------------------------------------------------------------------------- /src/pycryptopp/hash/sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/hash/sha256.py -------------------------------------------------------------------------------- /src/pycryptopp/hash/sha256module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/hash/sha256module.cpp -------------------------------------------------------------------------------- /src/pycryptopp/hash/sha256module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/hash/sha256module.hpp -------------------------------------------------------------------------------- /src/pycryptopp/publickey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/__init__.py -------------------------------------------------------------------------------- /src/pycryptopp/publickey/ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/ecdsa.py -------------------------------------------------------------------------------- /src/pycryptopp/publickey/ecdsamodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/ecdsamodule.cpp -------------------------------------------------------------------------------- /src/pycryptopp/publickey/ecdsamodule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/ecdsamodule.hpp -------------------------------------------------------------------------------- /src/pycryptopp/publickey/ed25519/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/ed25519/__init__.py -------------------------------------------------------------------------------- /src/pycryptopp/publickey/ed25519/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/ed25519/_version.py -------------------------------------------------------------------------------- /src/pycryptopp/publickey/ed25519/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/ed25519/keys.py -------------------------------------------------------------------------------- /src/pycryptopp/publickey/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/rsa.py -------------------------------------------------------------------------------- /src/pycryptopp/publickey/rsamodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/rsamodule.cpp -------------------------------------------------------------------------------- /src/pycryptopp/publickey/rsamodule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/publickey/rsamodule.hpp -------------------------------------------------------------------------------- /src/pycryptopp/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pycryptopp/test/test_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_aes.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_ecdsa.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_ed25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_ed25519.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_ed25519_kat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_ed25519_kat.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_from_Nikratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_from_Nikratio.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_rsa.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_sha256.py -------------------------------------------------------------------------------- /src/pycryptopp/test/test_xsalsa20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/test/test_xsalsa20.py -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBGFSbox128e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBGFSbox128e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBGFSbox256e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBGFSbox256e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBKeySbox128e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBKeySbox128e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBKeySbox256e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBKeySbox256e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBVarKey128e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBVarKey128e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBVarKey256e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBVarKey256e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBVarTxt128e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBVarTxt128e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/KAT_AES/ECBVarTxt256e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/KAT_AES/ECBVarTxt256e.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/SHA256LongMsg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/SHA256LongMsg.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/SHA256Monte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/SHA256Monte.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/SHA256ShortMsg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/SHA256ShortMsg.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/kat-ed25519-short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/kat-ed25519-short.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/kat-ed25519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/kat-ed25519.txt -------------------------------------------------------------------------------- /src/pycryptopp/testvectors/xsalsa20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/src/pycryptopp/testvectors/xsalsa20.txt -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/pycryptopp/HEAD/versioneer.py --------------------------------------------------------------------------------