Initial import of truecrypt cracking project.
commit90e270d150e03506273e48f8254abb56879d9954
authorNot Important <not@not-laptop.(none)>
Mon, 29 Jun 2009 04:32:11 +0000 (29 00:32 -0400)
committerNot Important <not@not-laptop.(none)>
Mon, 29 Jun 2009 04:32:11 +0000 (29 00:32 -0400)
tree21adfa6a6160d618905fbfdc0caf86370fb1ff01
parent4a94eecc3bee31d84676ab2b37a7af12001ca817
Initial import of truecrypt cracking project.
63 files changed:
tc/Makefile [new file with mode: 0644]
tc/crypt.h [new file with mode: 0644]
tc/crypto.c [new file with mode: 0644]
tc/crypto/Aes.h [new file with mode: 0644]
tc/crypto/AesSmall.c [new file with mode: 0644]
tc/crypto/AesSmall.h [new file with mode: 0644]
tc/crypto/AesSmall_x86.asm [new file with mode: 0644]
tc/crypto/Aes_x64.asm [new file with mode: 0644]
tc/crypto/Aes_x86.asm [new file with mode: 0644]
tc/crypto/Aescrypt.c [new file with mode: 0644]
tc/crypto/Aeskey.c [new file with mode: 0644]
tc/crypto/Aesopt.h [new file with mode: 0644]
tc/crypto/Aestab.c [new file with mode: 0644]
tc/crypto/Aestab.h [new file with mode: 0644]
tc/crypto/Blowfish.c [new file with mode: 0644]
tc/crypto/Blowfish.h [new file with mode: 0644]
tc/crypto/Cast.c [new file with mode: 0644]
tc/crypto/Cast.h [new file with mode: 0644]
tc/crypto/Des.c [new file with mode: 0644]
tc/crypto/Des.h [new file with mode: 0644]
tc/crypto/Makefile [new file with mode: 0644]
tc/crypto/Makefile.inc [new file with mode: 0644]
tc/crypto/Rmd160.c [new file with mode: 0644]
tc/crypto/Rmd160.h [new file with mode: 0644]
tc/crypto/Serpent.c [new file with mode: 0644]
tc/crypto/Serpent.h [new file with mode: 0644]
tc/crypto/Sha1.c [new file with mode: 0644]
tc/crypto/Sha1.h [new file with mode: 0644]
tc/crypto/Sha2.c [new file with mode: 0644]
tc/crypto/Sha2.h [new file with mode: 0644]
tc/crypto/Sources [new file with mode: 0644]
tc/crypto/Twofish.c [new file with mode: 0644]
tc/crypto/Twofish.h [new file with mode: 0644]
tc/crypto/Whirlpool.c [new file with mode: 0644]
tc/crypto/Whirlpool.h [new file with mode: 0644]
tc/pbkdf2.c [new file with mode: 0644]
tc/pbkdf2.h [new file with mode: 0644]
tc/python/gf2n.py [new file with mode: 0644]
tc/python/gf2n.pyc [new file with mode: 0644]
tc/python/keystrengthening.py [new file with mode: 0644]
tc/python/keystrengthening5.py [new file with mode: 0644]
tc/python/keystrengthening5.pyc [new file with mode: 0644]
tc/python/lrw.py [new file with mode: 0644]
tc/python/rijndael.py [new file with mode: 0644]
tc/python/rijndael.pyc [new file with mode: 0644]
tc/python/ripemd.py [new file with mode: 0644]
tc/python/ripemd.pyc [new file with mode: 0644]
tc/python/serpent.py [new file with mode: 0644]
tc/python/serpent.pyc [new file with mode: 0644]
tc/python/tc.c [new file with mode: 0644]
tc/python/tc.c~ [new file with mode: 0644]
tc/python/truecrypt.py [new file with mode: 0644]
tc/python/truecrypt5.py [new file with mode: 0644]
tc/python/truecryptc.py [new file with mode: 0755]
tc/python/truecryptc.py~ [new file with mode: 0644]
tc/python/twofish.py [new file with mode: 0644]
tc/python/twofish.pyc [new file with mode: 0644]
tc/python/whirlpool.py [new file with mode: 0644]
tc/python/whirlpool.pyc [new file with mode: 0644]
tc/python/xts.py [new file with mode: 0644]
tc/python/xts.pyc [new file with mode: 0644]
tc/tc.c [new file with mode: 0644]
tc/tc.h [new file with mode: 0644]