├── 2FSH-OPT ├── AES.H ├── COMPILE.BAT ├── DEBUG.H ├── PLATFORM.H ├── README ├── TABLE.H ├── TST2FISH.C ├── TST2FISH.EXE └── TWOFISH2.C ├── 2FSH-REF ├── AES.H ├── COMPILE.BAT ├── DEBUG.H ├── PLATFORM.H ├── README ├── TABLE.H ├── TST2FISH.C ├── TST2FISH.EXE └── TWOFISH.C ├── 2FSHJAVA └── utils │ └── Twofish │ ├── Twofish.jar │ ├── cbc_d_m.txt │ ├── cbc_e_m.txt │ ├── classes │ └── Twofish │ │ └── Twofish.properties │ ├── ecb_d_m.txt │ ├── ecb_e_m.txt │ ├── ecb_vk.txt │ ├── ecb_vt.txt │ ├── out.dl7.txt │ ├── out.dl9.txt │ └── src │ ├── Twofish_Algorithm.java │ └── Twofish_Properties.java ├── 2fsh-AES ├── Twofish-c │ ├── AES.H │ ├── DEBUG.H │ ├── PLATFORM.H │ ├── Readme.txt │ ├── TABLE.H │ ├── TST2FISH.C │ ├── TWOFISH2.C │ ├── makefile.Visualc │ ├── makefile.bcc │ └── makefile.gcc ├── Twofish-cpp │ ├── AES.H │ ├── DEBUG.H │ ├── PLATFORM.H │ ├── Readme.txt │ ├── TABLE.H │ ├── TST2FISH.C │ ├── TWOFISH.C │ ├── makefile.Visualc │ ├── makefile.bcc │ └── makefile.gcc ├── Twofish-java │ ├── Readme.txt │ ├── Twofish.jar │ ├── classes │ │ └── Twofish │ │ │ └── Twofish.properties │ └── src │ │ ├── Twofish_Algorithm.java │ │ └── Twofish_Properties.java └── twofish-asm │ ├── Code - 6805 │ ├── README │ ├── TABLE.INC │ ├── TWOFISH.ASM │ ├── TWOFISH.LST │ └── VECTOR.INC │ └── Code - 86 ASM │ ├── 2FISH_86.ASM │ ├── AES.H │ ├── COMPILE.BAT │ ├── CPUTYPE.ASM │ ├── DEBUG.H │ ├── PLATFORM.H │ ├── README │ ├── STRUCMAC.INC │ ├── TABLE.H │ ├── TST2FISH.C │ ├── TST2FISH.EXE │ └── TWOFISH2.C ├── 2fsh-asm ├── 2FISH_86.ASM ├── AES.H ├── COMPILE.BAT ├── CPUTYPE.ASM ├── DEBUG.H ├── PLATFORM.H ├── README ├── STRUCMAC.INC ├── TABLE.H ├── TST2FISH.C ├── TST2FISH.EXE └── TWOFISH2.C ├── 2fsh-z80 ├── twofish_fk1.asm └── twofish_pk1.asm ├── 2fsh6805 ├── README ├── TABLE.INC ├── TWOFISH.ASM ├── TWOFISH.LST └── VECTOR.INC ├── 3-WAY └── 3-way.c ├── A5 ├── a5-article.txt ├── a5.c └── gsm.txt ├── ACME ├── BlockCipher.class ├── BlockCipher.java ├── BlowfishCipher.class ├── BlowfishCipher.java ├── CbcBlockCipher.class ├── CbcBlockCipher.java ├── Cipher.class ├── Cipher.java ├── Crc16Hash.class ├── Crc16Hash.java ├── Crc32Hash.class ├── Crc32Hash.java ├── CryptoUtils.class ├── CryptoUtils.java ├── Des3Cipher.class ├── Des3Cipher.java ├── DesCipher.class ├── DesCipher.java ├── EncryptedInputStream.class ├── EncryptedInputStream.java ├── EncryptedOutputStream.class ├── EncryptedOutputStream.java ├── Hash.class ├── Hash.java ├── IdeaCipher.class ├── IdeaCipher.java ├── NullCipher.class ├── NullCipher.java ├── Rc4Cipher.class ├── Rc4Cipher.java ├── Rot13Cipher.class ├── Rot13Cipher.java ├── ShaHash.class ├── ShaHash.java ├── StreamCipher.class └── StreamCipher.java ├── AKELARRE ├── Ake32.c └── Ake32.h ├── ASSORTED ├── BLOCK.C ├── CAESAR.C ├── CAPITAL.C ├── CHI-SQ.C ├── ENTROPY.C ├── GETOPT.C ├── GET_KEY.C ├── HEADER.H ├── KAPPA.C ├── MAKEFILE ├── N-GRAM.C ├── ROTOR.C ├── ROTOR.CFG ├── TEXTSTRP.C ├── THOUSAND.A └── VIGENERE.C ├── BBC ├── BBC.C ├── MAIN.C └── MAKEFILE ├── BFSH-ABB └── blowfish.txt ├── BFSH-ABE ├── Makefile ├── blowfish └── blowfish.cc ├── BFSH-CON ├── blowfish.cpp ├── blowfish.h └── blowfish.h2 ├── BFSH-KOC ├── Blowfish.c ├── Blowfish.h └── Main.c ├── BFSH-LAC ├── BFISH4B.PAS ├── BFISHCBC.PAS ├── BLW-CBC.EXE ├── BLW-CBC.PAS ├── ERRORS.TXT ├── FILE_ID.DIZ ├── HISTORY.TXT ├── MEDISIS.COM ├── README.TXT ├── THANKS.TXT └── TODO.TXT ├── BFSH-NAF ├── Blowfish-cert.txt ├── Blowfish.java └── TestBlowfish.java ├── BFSH-REF ├── bftest.exe ├── blowfish.def ├── blowfish.doc ├── blowfish.exp ├── blowfish.h └── blowfish.lib ├── BFSH-SCH ├── BLOWFISH.C ├── BLOWFISH.DAT └── BLOWFISH.H ├── BFSH-UNK └── BLOWFISH ├── BIGNUM1 └── BIGNUM ├── BIGNUM2 └── BIGNUM.C ├── BNLIB11 └── bnlib11 │ ├── CHANGES │ ├── COPYING │ ├── Makefile.in │ ├── README.bn │ ├── README.bntest │ ├── bn.c │ ├── bn.doc │ ├── bn.h │ ├── bn00.c │ ├── bn16.c │ ├── bn16.h │ ├── bn68000.c │ ├── bn8086.c │ ├── bninit16.c │ ├── bnintern.doc │ ├── bnprint.c │ ├── bnprint.h │ ├── bnsize00.h │ ├── bntest00.c │ ├── bntest16.c │ ├── config.hin │ ├── configure │ ├── configure.in │ ├── cputime.h │ ├── files │ ├── germain.c │ ├── germain.h │ ├── germtest.c │ ├── jacobi.c │ ├── jacobi.h │ ├── kludge.h │ ├── lbn.h │ ├── lbn00.c │ ├── lbn16.c │ ├── lbn16.h │ ├── lbn68000.c │ ├── lbn68000.h │ ├── lbn68020.c │ ├── lbn68020.h │ ├── lbn80386.asm │ ├── lbn80386.h │ ├── lbn80386.s │ ├── lbn8086.asm │ ├── lbn8086.h │ ├── lbn960jx.h │ ├── lbn960jx.s │ ├── lbnalpha.h │ ├── lbnalpha.s │ ├── lbnmem.c │ ├── lbnmem.h │ ├── lbnppc.c │ ├── lbnppc.h │ ├── legal.c │ ├── legal.h │ ├── ppcasm.h │ ├── prime.c │ ├── prime.h │ ├── sieve.c │ ├── sieve.h │ └── sizetest.c ├── BRUTERC4 └── bruterc4.c ├── Bfsh-jav ├── Blowfish-cert.txt ├── Blowfish.java └── TestBlowfish.java ├── CA1-1 ├── CRDFUS.C ├── CRDFUS.H ├── CRINIT.C ├── CRINIT.H ├── CRLINK.C ├── CRLINK.H ├── CRPERM.C ├── CRPERM.H ├── CRTYPE.H ├── CRUTIL.C ├── CRYPT.C └── MAKEFILE ├── CAST-256 ├── cast.c └── std_defs.h ├── CAST-BAR └── cast.c ├── CAST-BAR2 ├── cast.c └── cast_tab.h ├── CAST-GJK ├── fcast011.tgz ├── fcast011.zip └── readme011.txt ├── CAST-GUT ├── Cast128.c ├── Cast128.h ├── Cast128s.h └── readme.txt ├── CAST-REI ├── Makefile ├── cast.c ├── cast.h ├── cast_sboxes.h └── casttest.c ├── CBW ├── APPROX.C ├── AUTOTRI.C ├── AUTOTRI.H ├── BANNER.C ├── BDRIVER.C ├── CBLOCKS.C ├── CBW.DOC ├── CBW.LOG ├── CHAR-IO.C ├── CIPHER.C ├── CIPHER.H ├── COMMON.WOR ├── DBLOCK.C ├── DBLOCK.H ├── DBSAUX.C ├── DLINE.C ├── ECLASS.C ├── EDRIVER.C ├── ENIGMA.C ├── FOO.CIP ├── FOO.PER ├── GBLOCK.C ├── GRAPHICS ├── H19.SLI ├── INDEX ├── KEYLIB.C ├── KNIT.C ├── LAYOUT.H ├── LPAIR.C ├── MAKEFILE ├── MANIFEST ├── MSS-BIGR.STA ├── MSS-PROB.TXT ├── MSS.STA ├── MSS.WOR ├── PARSER.C ├── PARSER.H ├── PERM.C ├── PGATE.C ├── PQUEUE.C ├── PQUEUE.H ├── PWORD.C ├── READ.ME ├── SCREEN.C ├── SDRIVER.C ├── SHORT.WOR ├── SPECS.H ├── START.C ├── STATS.C ├── STATS.SLI ├── TDRIVER.C ├── TERMINAL.C ├── TERMINAL.H ├── TEST.CIP ├── TEST.TXT ├── TEST1.CIP ├── TEST1.PER ├── TEST1.TXT ├── TEST2.CIP ├── TEST2.TXT ├── TEST3.CIP ├── TEST3.PER ├── TEST3.TXT ├── TEST3.WOR ├── TODO.TXT ├── TRIGRAMS.SHO ├── TRIGRAMS.STA ├── TRITAB.C ├── UNSHAR.HDR ├── USER.C ├── VT100.SLI ├── WEBSTER.C ├── WINDOW.H ├── WINDOWLI.C ├── ZEECODE.C └── ZEECODE.PER ├── CHAMBERS └── CHAMBERS.TXT ├── CHI └── chi.c ├── CRPT-POL └── CRPT-POL ├── CRYPT1 └── CRYPT1 ├── CRYPT3-L └── CRYPT3.C ├── CRYPTBAS ├── README ├── c6.c ├── crt.c ├── freq.c ├── ic.c ├── info ├── jac.c ├── knap.c └── rprime.c ├── CRYPTON ├── crypton.c ├── crypton1.c └── std_defs.h ├── Cryptix-1.16 ├── CHANGES ├── Crypt-Blowfish │ ├── Blowfish.xs │ ├── COPYRIGHT │ ├── Makefile.PL │ ├── blowfish.c │ ├── blowfish.h │ ├── test.pl │ └── typemap ├── Crypt-DES │ ├── COPYRIGHT │ ├── DES.xs │ ├── Makefile.PL │ ├── des.c │ ├── des.h │ ├── test.pl │ └── typemap ├── Crypt-IDEA │ ├── COPYRIGHT │ ├── IDEA.xs │ ├── Makefile.PL │ ├── idea.c │ ├── idea.h │ ├── test.pl │ └── typemap ├── Crypt-Lib │ ├── COPYRIGHT │ ├── Changes │ ├── Crypt │ │ ├── BlockCipher.pm │ │ ├── Blowfish.pm │ │ ├── Blowfish.pod │ │ ├── CBC.pm │ │ ├── CFB.pm │ │ ├── CSRandomStream.pm │ │ ├── DES.pm │ │ ├── DES.pod │ │ ├── DES3EDE.pm │ │ ├── DSA │ │ │ ├── KeyGen.pm │ │ │ ├── NOTES │ │ │ ├── PublicKey.pm │ │ │ └── SecretKey.pm │ │ ├── ECB.pm │ │ ├── ElGamal │ │ │ ├── KeyGen.pm │ │ │ ├── NOTES │ │ │ ├── PublicKey.pm │ │ │ └── SecretKey.pm │ │ ├── HashMD5.pm │ │ ├── HashSHA.pm │ │ ├── HashSHA0.pm │ │ ├── IDEA.pm │ │ ├── IDEA.pod │ │ ├── MD5.pm │ │ ├── MessageDigest.pm │ │ ├── MessageHash.pm │ │ ├── RSAKey.pm │ │ ├── RSAKeyGen.pm │ │ ├── RSAPublicKey.pm │ │ ├── RSASecretKeyPair.pm │ │ ├── SHA.pm │ │ ├── SHA0.pm │ │ └── StreamCipher.pm │ ├── Makefile.PL │ ├── README │ ├── examples │ │ ├── test_blowfish_cfb │ │ ├── test_csrs │ │ ├── test_des_cbc │ │ ├── test_des_cfb │ │ ├── test_des_ecb │ │ ├── test_elgamal │ │ ├── test_idea_cbc │ │ ├── test_idea_cfb │ │ ├── test_md │ │ ├── test_md5 │ │ ├── test_mds │ │ └── test_sha │ └── test.pl ├── Crypt-MD5 │ ├── MD5.xs │ ├── Makefile.PL │ ├── README │ ├── global.h │ ├── md5.h │ ├── md5c.c │ ├── test.pl │ └── typemap ├── Crypt-SHA │ ├── Makefile.PL │ ├── SHA.xs │ ├── sha.h │ ├── sha_func.c │ ├── test.pl │ └── typemap ├── Crypt-SHA0 │ ├── Makefile.PL │ ├── SHA0.xs │ ├── sha.h │ ├── sha_func.c │ ├── test.pl │ └── typemap ├── MANIFEST ├── Makefile.PL ├── Math-BigInteger │ ├── BigInteger.xs │ ├── COPYRIGHT │ ├── Makefile.PL │ ├── README │ ├── bn.c │ ├── bn.doc │ ├── bn.h │ ├── bn_mul.c │ ├── bn_regs.c │ ├── test.pl │ └── typemap ├── Math-Lib │ ├── COPYRIGHT │ ├── Makefile.PL │ ├── Math │ │ ├── BigInteger.pm │ │ ├── BigInteger.pod │ │ ├── MPI.pm │ │ ├── PRSG.pm │ │ ├── PRSG.pod │ │ ├── PseudoRandomStream.pm │ │ ├── Random.pm │ │ ├── TestPrime.pm │ │ ├── TrulyRandom.pm │ │ └── TrulyRandom.pod │ ├── README │ ├── examples │ │ ├── test_bigint │ │ ├── test_mpi │ │ ├── test_prime │ │ ├── test_prs │ │ ├── test_prs2 │ │ ├── test_prsg │ │ └── test_rand │ └── test.pl ├── Math-PRSG │ ├── COPYRIGHT │ ├── Makefile.PL │ ├── PRSG.xs │ ├── prsg.c │ ├── prsg.h │ ├── test.pl │ └── typemap ├── Math-TrulyRandom │ ├── COPYRIGHT │ ├── Makefile.PL │ ├── README │ ├── TrulyRandom.xs │ ├── test.pl │ ├── truerand.c │ ├── truerand.h │ └── typemap └── Stream │ ├── COPYRIGHT │ ├── Makefile.PL │ ├── README │ ├── Stream │ ├── DataEncoding.pm │ ├── DataInput.pm │ ├── DataOutput.pm │ ├── FileInput.pm │ ├── FileOutput.pm │ ├── IO.pm │ ├── Streamable.pm │ ├── StringInput.pm │ └── StringOutput.pm │ ├── examples │ ├── t1.pl │ ├── test3 │ ├── testFile │ └── testFile2 │ └── test.pl ├── Cryptlib └── cryptolib_1.2 │ ├── .history.bird │ ├── README │ ├── README.chisquare │ ├── README.install │ ├── chisquare │ ├── README │ ├── bash.h │ ├── chi.c │ ├── cointest.c │ ├── coupon.c │ ├── frequency.c │ ├── gamma.c │ ├── gap.c │ ├── main.c │ ├── makefile │ ├── maximum.c │ ├── mtuple.c │ ├── permute.c │ ├── poker.c │ ├── runs.c │ └── serial.c │ ├── cryptolib │ ├── include │ │ └── libcrypt.h │ ├── man │ │ ├── README │ │ ├── cryptoman.ps │ │ └── mansrc │ │ │ ├── DSS.3bm │ │ │ ├── RSA.3bm │ │ │ ├── bigmath.3bm │ │ │ ├── bigutils.3bm │ │ │ ├── des.3bm │ │ │ ├── dh.3bm │ │ │ ├── dss.bun │ │ │ ├── elgamal.3bm │ │ │ ├── euclid.3bm │ │ │ ├── md5.3bm │ │ │ ├── mdigest.3bm │ │ │ ├── netIface.3bm │ │ │ ├── primes.3bm │ │ │ ├── quad_residue.3bm │ │ │ ├── quantize.3bm │ │ │ ├── rabin.3bm │ │ │ ├── random.3bm │ │ │ └── shs.3bm │ ├── src │ │ ├── 80x86_dos_lmult.s │ │ ├── 80x86_unix_lmult.s │ │ ├── Makefile │ │ ├── bigmath.c │ │ ├── bignum.c │ │ ├── bigpow.c │ │ ├── bufasn1.c │ │ ├── bufnet.c │ │ ├── coremult.c │ │ ├── des.c │ │ ├── desRand.c │ │ ├── desmodes.c │ │ ├── dh.c │ │ ├── dsa.c │ │ ├── elgamal.c │ │ ├── euclid.c │ │ ├── fasn1.c │ │ ├── fastmult.c │ │ ├── filenet.c │ │ ├── fsrRand.c │ │ ├── getrand.c │ │ ├── ioutils.c │ │ ├── jacobi.c │ │ ├── libcrypt.h │ │ ├── lmult16.asm │ │ ├── lmult32.asm │ │ ├── longmult.c │ │ ├── longmult.h │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── mdigest.c │ │ ├── memalloc.c │ │ ├── msbtable.c │ │ ├── newton.c │ │ ├── nt_truerand.c │ │ ├── primes.c │ │ ├── quadres.c │ │ ├── quantize.c │ │ ├── rabin.c │ │ ├── rsa.c │ │ ├── sgi_longmult.s │ │ ├── shs.c │ │ ├── solaris_sparc10_longmult.s │ │ ├── solaris_sparc2_longmult.s │ │ ├── sparc10_longmult.s │ │ ├── sparc2_longmult.s │ │ └── unix_truerand.c │ └── tests │ │ ├── Makefile │ │ ├── a.out │ │ ├── main.c │ │ ├── testDH.c │ │ ├── testDSA.c │ │ ├── testDigest.c │ │ ├── testEG.c │ │ ├── testFileDES.c │ │ ├── testRSA.c │ │ ├── testRabin.c │ │ ├── test_gsp.c │ │ ├── testbpow.c │ │ └── testrand.c │ ├── cryptolib1.2.doc │ └── release_notes ├── Ctxjava ├── Cryptix_bin_3-1-2.zip ├── Cryptix_doc_3-1-2.zip └── Cryptix_src_3-1-2.zip ├── DEAL ├── deal.c └── std_defs.h ├── DES-BARR ├── Makefile ├── README ├── atob.c ├── btoa.1 ├── btoa.c ├── cipher.1 ├── cipher.c ├── cipher.h ├── cmail ├── des.h ├── desblock.c ├── descfb.c ├── desdefs.h ├── deskey.c ├── destest.c ├── desvalid.c ├── getkey.c ├── sboxp.c ├── testcfb.c ├── testdata.des ├── testin ├── testin.cfb ├── testout └── testout.cfb ├── DES-BISH ├── cdes.1 └── cdes.c ├── DES-DWY └── DESAlgorithm.java ├── DES-KARN ├── Makefile ├── README ├── benchmark.c ├── des.1 ├── des.3 ├── des.c ├── descalc.c ├── descert.c ├── descycle.c ├── getopt.c ├── getpass.c ├── main.c ├── misc.c ├── radlogin.c ├── rkeys.format ├── testdata ├── uudecode.c └── uuencode.c ├── DES-KOON ├── DES.1 ├── DES.3 ├── DES.C ├── DES.H ├── DES.TES ├── DIAG.C ├── FDES.C ├── FDES.H ├── GETOPT.C ├── HEX.C ├── INIT_PER.C ├── INV_PERM.C ├── KEY.C ├── MAKEFILE └── SBOX.C ├── DES-LEVY ├── fastdes.c ├── fdemo.c ├── ftest.c ├── makefile.bsd ├── makefile.gen ├── makefile.usg └── readmef.des ├── DES-LOUK └── CRYPT-DI │ ├── ALODES │ ├── COPYRIGH │ ├── DOS │ │ ├── CLEAN │ │ ├── COPY-FIL.PER │ │ ├── GET-FILE │ │ ├── MAKESHAR │ │ ├── PROBLEMS │ │ └── README │ ├── GNUMAKEF │ ├── HUTLIB │ ├── INSTALL.CON │ ├── LIB │ │ ├── CBC-CKSU.C │ │ ├── CBC-ENCR.C │ │ ├── DEPENDEN │ │ ├── DES-BITR.C │ │ ├── DES-DATA.C │ │ ├── DES-EXPA.C │ │ ├── DES-FUN.C │ │ ├── DES-FUN.H │ │ ├── DES-HASH.C │ │ ├── DES-HEX.C │ │ ├── DES-PERM.C │ │ ├── DES-PRIV.H │ │ ├── DES-REVE.C │ │ ├── DES-SUN-.C │ │ ├── DES.H │ │ ├── ECB-ENCR.C │ │ ├── ECB-ENCR.S │ │ ├── EIGHT.H │ │ ├── FP-REV.H │ │ ├── FP.H │ │ ├── GNUMAKEF │ │ ├── IP-REV.H │ │ ├── IP.H │ │ ├── KSCHED-F.C │ │ ├── KSCHED.C │ │ ├── KSCHED.H │ │ ├── LIBDIR │ │ ├── MAKEFILE │ │ ├── MAKERULE │ │ ├── NEW-CRYP.C │ │ ├── PARITY8.H │ │ ├── PCBC-ENC.C │ │ ├── SPE-TABL.H │ │ ├── STR-TO-K.C │ │ ├── SUN-CBC-.C │ │ ├── SUN-ECB-.C │ │ ├── SUN-PARI.H │ │ ├── SUN-SETP.C │ │ └── UNIX-CRY.C │ ├── LIBDIR │ ├── MAKEFILE │ ├── MAKERULE │ ├── MAN │ │ ├── DES.1 │ │ └── LIBDES.3 │ ├── PROG │ │ ├── COLLISIO │ │ ├── CRYPT.C │ │ ├── DES-CERT.C │ │ ├── DES-KTES.C │ │ ├── DES-PROB.C │ │ ├── DES.C │ │ ├── GNUMAKEF │ │ ├── LIBDIR │ │ ├── MAKEFILE │ │ ├── MAKERULE │ │ ├── NBS-DATA │ │ ├── RANDOM-K.C │ │ ├── TEST-CRY.C │ │ ├── TESTDATA │ │ └── UNIX-CRY.C │ ├── README │ ├── TABLES │ │ ├── E │ │ ├── EIGHT.MAK │ │ ├── FP-REV.MAK │ │ ├── FP.MAK │ │ ├── GNUMAKEF │ │ ├── IP │ │ ├── IP-1 │ │ ├── IP-REV.MAK │ │ ├── IP.MAK │ │ ├── KSCHED.DON │ │ ├── KSCHED.MAK │ │ ├── MAKEFILE │ │ ├── MAKERULE │ │ ├── MK-FP-RE │ │ ├── MK-IP │ │ ├── MK-IP-RE │ │ ├── P │ │ ├── PARITY8.MAK │ │ ├── REMOVABL │ │ ├── S │ │ ├── SHIFT4.DON │ │ ├── SPE-TABL.MAK │ │ └── SUN-PARI.MAK │ └── VERSION │ ├── CONFIG │ ├── CONFIG.C │ ├── GNUMAKEF │ ├── MAKEFILE │ └── MAKERULE │ ├── GNUMAKEF │ ├── HUTLIB │ ├── GETLINE.C │ ├── GETPASS.C │ ├── GNUMAKEF │ ├── HUT-INCL.H │ ├── INSTALL.CON │ ├── LIBDIR │ ├── MAKEFILE │ ├── MAKERULE │ ├── NEXT_FIE.C │ ├── READ-PAS.C │ ├── STRERROR.C │ ├── STRSAVE.C │ └── XALLOC.C │ ├── LIBDIR │ ├── AMP.H │ ├── DES.H │ ├── HUT-INCL.H │ ├── LIBAMP.A │ ├── LIBDES.A │ └── LIBHUT.A │ ├── MAKEFILE │ ├── MAKERULE │ ├── MP │ ├── COPYRIGH │ ├── GNUMAKEF │ ├── INSTALL.CON │ ├── LIB │ │ ├── AMP.H │ │ ├── GNUMAKEF │ │ ├── LIBDIR │ │ ├── MAKEFILE │ │ ├── MAKERULE │ │ ├── MP_ADD.C │ │ ├── MP_ADD_I.C │ │ ├── MP_ATOM.C │ │ ├── MP_CMP.C │ │ ├── MP_DATA.C │ │ ├── MP_DIV.C │ │ ├── MP_DIV_X.C │ │ ├── MP_EXPAN.C │ │ ├── MP_GCD.C │ │ ├── MP_INV.C │ │ ├── MP_ITOM.C │ │ ├── MP_LCM.C │ │ ├── MP_LEN.C │ │ ├── MP_MUL.C │ │ ├── MP_MUL_X.C │ │ ├── MP_NEW.C │ │ ├── MP_NORM.C │ │ ├── MP_POW.C │ │ ├── MP_RANDO.C │ │ ├── MP_RDIV.C │ │ ├── MP_REDUC.C │ │ ├── MP_RPOW.C │ │ ├── MP_SQRT.C │ │ ├── MP_SUB.C │ │ ├── PRIMES.H │ │ ├── STR-TO-N.C │ │ └── TEST-PRI.C │ ├── LIBDIR │ ├── MAKEFILE │ ├── MAKERULE │ ├── MAN │ │ ├── AMP.3 │ │ ├── EXAMPLE │ │ └── SHARE-SE.1 │ ├── PROG │ │ ├── DH │ │ ├── DH-34 │ │ ├── DH-TESTR │ │ ├── FIND-PRI.C │ │ ├── GNUMAKEF │ │ ├── LIBDIR │ │ ├── MAKEFILE │ │ ├── MAKERULE │ │ ├── NDC.C │ │ ├── PRIMES.C │ │ ├── SHARE-SE.C │ │ ├── TEST-AMP.C │ │ └── TEST-PRI.C │ └── README │ └── RELEASE- ├── DES-MIKK ├── BASDES45.LIB ├── BASDES45.QLB ├── BASDES71.LIB ├── BASDES71.QLB ├── BASLIB.ASM ├── BASLIB.OBJ ├── EXAMPLE.BAS └── README.TXT ├── DES-MITC ├── CRUNCH.C ├── DECRYPT.C ├── DES.C ├── DODEC.BAT ├── DOENC.BAT ├── ENCRYPT.C ├── GENSP.C ├── GETPASS.C ├── KEYSETUP.C ├── PERMUTE.C ├── RANDBLOC.C └── SETUP.C ├── DES-OSTH └── DES │ ├── COPYRIGH │ ├── FIPS │ ├── DES.TXT │ ├── FIPS_DEF.H │ ├── FIPS_E.H │ ├── FIPS_IP.H │ ├── FIPS_IPI.H │ ├── FIPS_LS.H │ ├── FIPS_P.H │ ├── FIPS_PC1.H │ ├── FIPS_PC2.H │ ├── FIPS_S.H │ └── MAKEFILE │ ├── INCLUDE │ ├── DES.H │ └── MAKEFILE │ ├── LIB │ ├── DES_CBC.C │ ├── DES_CFB8.C │ ├── DES_CKSU.C │ ├── DES_DEA.C │ ├── DES_ECB.C │ ├── DES_ECB2.C │ ├── DES_HEXB.C │ ├── DES_ISSW.C │ ├── DES_ISWE.C │ ├── DES_KEY.C │ ├── DES_NKEY.C │ ├── DES_OFB8.C │ ├── DES_PASS.C │ ├── DES_PCBC.C │ ├── DES_PRIN.C │ ├── DES_RBLO.C │ ├── DES_READ.C │ ├── DES_RKEY.C │ ├── DES_SETK.C │ ├── DES_STRK.C │ ├── DES_TEST.C │ ├── IVEC.C │ ├── KEY_SWEA.H │ ├── KEY_WEAK.H │ ├── LOCAL_DE.H │ ├── MAKEFILE │ ├── MAKEFILE.BAK │ ├── PARITY.H │ ├── PARITY_T.C │ ├── PROMPT.H │ ├── PROMPT_K.C │ ├── QUAD_CKS.C │ ├── READ.H │ ├── READ_LIN.C │ ├── SIG.H │ ├── SIG_CTRL.C │ ├── TAB_E.C │ ├── TAB_IP.C │ ├── TAB_IPIN.C │ ├── TAB_LS.H │ ├── TAB_P.C │ ├── TAB_P.H │ ├── TAB_PARI.C │ ├── TAB_PC1.C │ ├── TAB_PC2.C │ ├── TAB_S.C │ ├── TAB_S_AN.C │ ├── TTY.H │ ├── TTY_CTRL.C │ └── VERSION.H │ ├── MAKEFILE │ ├── MAN │ ├── DES.3 │ ├── DESBENCH.1 │ ├── DESCRYPT.1 │ ├── DESKEY.1 │ ├── DESTEST.1 │ └── MAKEFILE │ ├── PROG │ ├── CTEST │ ├── DESBENCH.C │ ├── DESCRYPT.C │ ├── DESKEY.C │ ├── DESTEST.C │ ├── MAKEFILE │ └── MAKEFILE.BAK │ ├── README │ ├── UTIL │ ├── COMPILE.C │ ├── MAKEFILE │ ├── MAKEFILE.BAK │ └── MKDEPEND │ └── VERIFY.C ├── DES-OUTE ├── D3DES.C ├── D3DES.H ├── D3DES68K.C └── README ├── DES-YOUN ├── CBC_CKSU.C ├── CBC_ENCR.C ├── COPYING ├── DES.C ├── DES.H ├── DES.MAN ├── DES.PL ├── DESTEST.C ├── DES_CRYP.MAN ├── DES_LOCA.H ├── DOIP ├── DOPC1 ├── DOPC2 ├── ECB_ENCR.C ├── ENC_READ.C ├── ENC_WRIT.C ├── FCRYPT.C ├── FILES ├── IMAKEFIL ├── INSTALLA ├── MAKEFILE ├── MANIFEST ├── PC1 ├── PC2 ├── PCBC_ENC.C ├── PODD.H ├── QUAD_CKS.C ├── RANDOM_K.C ├── README ├── READ_PAS.C ├── RPW.C ├── SET_KEY.C ├── SHIFTS.PL ├── SK.H ├── SP.H ├── SPEED.C ├── SPR.H ├── STRING_T.C ├── TESTDES.PL ├── TIMES ├── VERSION └── VMS.COM ├── DESSBOX └── S5-DES.TXT ├── DESX ├── desx.c ├── desx.h ├── desxmain.c ├── dozip ├── enxkeys.c ├── getopt.c ├── getoptpr.h ├── makefile ├── p.h ├── readme ├── test ├── usage.c └── usagepro.h ├── DFC ├── dfc.c └── std_defs.h ├── DHPRIME └── genprime.c ├── DIAMOND ├── 31416.ENC ├── CRC.CPP ├── CRC.H ├── DEF.H ├── DIAMOND2.CPP ├── DIAMOND2.DAT ├── DIAMOND2.DOC ├── DIAMOND2.H ├── DIAMOND2.PS ├── DLOCK2.ASC ├── DLOCK2.CPP ├── DLOCK2.EXE ├── DLOCK2.TXT ├── FILE_ID.DIZ ├── MAKDLOCK.BAT ├── MD5SUM.EXE ├── MD5SUM.TXT ├── MPJ8.ASC └── THESIS.TXT ├── Delphi ├── CRYPTO.EXE ├── crypto │ ├── demo16 │ │ ├── FRM1.dfm │ │ ├── Frm1.pas │ │ ├── Md5.dll │ │ └── Test1.dpr │ ├── demo32 │ │ ├── Frm1.dfm │ │ ├── Frm1.pas │ │ ├── Test1.dof │ │ ├── Test1.dpr │ │ └── Test1.dsk │ ├── rangen │ │ ├── Ccube.zip │ │ ├── ReadRan.txt │ │ ├── Secretf.dfm │ │ ├── String16.pas │ │ ├── keyfrm16.dpr │ │ └── secretf.pas │ └── units │ │ ├── Blow32.res │ │ ├── Blowunit.dcr │ │ ├── Blowunit.pas │ │ ├── Cryptcon.pas │ │ ├── Cryptdef.inc │ │ ├── Crypto.hlp │ │ ├── Crypto.kwf │ │ ├── Ideaunit.pas │ │ ├── Md5unit.dcr │ │ ├── Md5unit.pas │ │ ├── Rc5unit.pas │ │ ├── dcr32 │ │ ├── Blowunit.dcr │ │ ├── Desunit2.dcr │ │ ├── Ideaunit.dcr │ │ ├── Md5unit.dcr │ │ ├── Rc4unit.dcr │ │ └── Rc5unit.dcr │ │ ├── desunit2.dcr │ │ ├── desunit2.pas │ │ ├── ideaunit.dcr │ │ ├── rc4unit.dcr │ │ ├── rc4unit.pas │ │ └── rc5unit.dcr └── readme.txt ├── E2 ├── e2.c └── std_defs.h ├── ELIPTIC ├── CHANGES ├── NOTES ├── README ├── bigint.c ├── bigint.h ├── eliptic.c ├── eliptic.doc ├── eliptic.h ├── eliptic_keys.h ├── krypto_knot.c ├── krypto_knot.h ├── makefile.bc4 ├── makefile.mac ├── makefile.unx ├── support.c └── support.h ├── ELLIPTIX ├── build │ └── cryptix │ │ └── ecc │ │ ├── DifferentCurvesException.class │ │ ├── DifferentFieldsException.class │ │ ├── EC.class │ │ ├── EC2m.class │ │ ├── ECp.class │ │ ├── EPoint.class │ │ ├── EPoint2m.class │ │ ├── EPointTest.class │ │ ├── EPointp.class │ │ ├── GF.class │ │ ├── GF2m.class │ │ ├── GFTest.class │ │ ├── GFTrace.class │ │ ├── GFUtil.class │ │ ├── GFp.class │ │ ├── GenericECException.class │ │ ├── InvalidECParamsException.class │ │ ├── InvalidPointDescriptionException.class │ │ └── PointNotOnCurveException.class ├── license.txt ├── readme.txt └── src │ └── cryptix.ecc │ ├── DifferentCurvesException.java │ ├── DifferentFieldsException.java │ ├── EC.java │ ├── EC2m.java │ ├── ECp.java │ ├── EPoint.java │ ├── EPoint2m.java │ ├── EPointTest.java │ ├── EPointp.java │ ├── GF.java │ ├── GF2m.java │ ├── GFTest.java │ ├── GFTrace.java │ ├── GFUtil.java │ ├── GFp.java │ ├── GenericECException.java │ ├── InvalidECParamsException.java │ ├── InvalidPointDescriptionException.java │ └── PointNotOnCurveException.java ├── ENIGMA └── ENIGMA ├── ESCROW └── ESCROW ├── EXAMPLES ├── CHINESE-.C ├── COMB-LCG.C ├── COMBINE-.C ├── EEUCLID.C ├── GCD-N.C ├── GCD.C ├── JACOBI.C ├── LFSR.C ├── LFSR2.C ├── MODEXP.C ├── ROT13.C ├── X0.C ├── XOR.C └── XOR2.C ├── FEAL8-WI └── feal-8.c ├── FEAL8 └── FEAL8 ├── FEALNX └── FEALNX ├── FREQ └── FREQ.C ├── FROG ├── frog.c └── std_defs.h ├── FROGC ├── AES.H ├── FROG.C ├── FROG.H ├── MAIN.C ├── README ├── TESTS.C ├── TESTS.EXE └── TESTS.H ├── FROGJAVA ├── FROG │ ├── FROG.JAR │ ├── KAT~1.CLA │ ├── MCT~1.CLA │ └── SRC │ │ ├── FROG_A~1.JAV │ │ ├── FROG_P~1.JAV │ │ ├── KAT~1.JAV │ │ └── MCT~1.JAV └── README ├── GOST-KOC └── GOST.C ├── GOST-PLU └── GOST.C ├── HASHES └── HASHES │ ├── BYTEREV.ASM │ ├── MD5.C │ ├── MD5.H │ ├── MD52.C │ ├── MD52.H │ ├── MD53.ASM │ ├── MD5TEST.C │ ├── README │ ├── ROT.ASM │ ├── SHS.C │ └── SHS2.ASM ├── HAVAL-BA ├── haval.c ├── haval.h └── readme.txt ├── HAVAL ├── Makefile ├── README ├── cert.data ├── haval.c ├── haval.cert ├── haval.h ├── haval.ps ├── havalapp.h ├── havaltest.c └── pi.frac ├── HILL ├── README ├── hill ├── hill.1 ├── hill0.c ├── kappa.c ├── makefile └── table.i ├── HPC ├── hpc.c └── std_defs.h ├── I-HAT ├── Makefile ├── chisq.3 ├── chisq.c ├── chisq.h ├── g_test.c ├── gamma.3 ├── gamma.c ├── gamma.h └── info.c ├── IDEA-WIL └── idea.c ├── IDEA68K └── IDEA68K │ ├── BAR.C │ ├── BAZ.C │ ├── CRYPT.H │ ├── CRYPT1.C │ ├── CRYPT2.ASM │ ├── CRYPT2.O │ ├── FOO.C │ ├── GARPLY.C │ ├── IDEA.C │ ├── MAKEFILE │ ├── QUUX.C │ └── README ├── IDEA8086 └── IDEA8086 │ ├── CRYPT.ASM │ ├── IDEA.C │ ├── IDEA.H │ └── TEST.C ├── IDEAPLUS ├── C_FCT.H ├── C_ext_fc.h ├── IDEA.RPT ├── IDEAT.C ├── IDEAT.CPP ├── IDEAplus.C ├── IDEAplus.Cpp ├── IDEAplus.h └── Readme.txt ├── IDEATINY └── TINYIDEA.ASM ├── IDEA_PLU ├── IDEA.C ├── IDEA.H ├── README └── USUALS.H ├── ISOMORPH └── ISOMORPH ├── KERBEROS └── RFC1510 ├── KHUFU ├── KHUFU.C ├── MAKEFILE ├── PRSBOX.C └── PRSBOX.H ├── KS-TEST └── KS-TEST.C ├── LCRNG-T └── OKEEFE ├── LCRNG ├── License ├── MANIFEST ├── Makefile ├── Perl ├── README ├── lotto6 ├── patchlevel.h └── random.c ├── LIBCH ├── lch025.zip ├── lch025a.txt └── readme.txt ├── LIBDES ├── libdes-4_01.patch1 ├── libdes-4_01_tar.gz └── readme.txt ├── LIBRAND └── librand.shar ├── LOKI ├── LOKI.H ├── LOKI.I ├── LOKI89.C ├── LOKI91.C ├── LOKICERT.C ├── MAKEFILE ├── README ├── SINGLE89 ├── SINGLE89.LOG ├── SINGLE91 ├── SINGLE91.LOG ├── TRIPLE89 └── TRIPLE91 ├── LOKI97 └── cref │ ├── Makefile │ ├── README │ ├── aestest.c │ ├── aestime.c │ ├── loki97.c │ ├── loki97.h │ ├── test_cbc.c │ ├── test_cfb1.c │ └── test_ecb.c ├── LOKIJAVA └── javasrc │ ├── LOKI97.jar │ ├── README │ ├── classes │ └── LOKI97 │ │ ├── LOKI97.properties │ │ ├── LOKI97_Algorithm.class │ │ └── LOKI97_Properties.class │ └── src │ ├── LOKI97_Algorithm.java │ └── LOKI97_Properties.java ├── LUCIFER2 ├── LUCIFER.C ├── LUCIFER.H └── TESTS ├── LUCRE081 ├── client │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── balance.c │ ├── client.h │ ├── deposit.c │ ├── expreq.c │ ├── getpay.c │ ├── main.c │ ├── openacc.c │ ├── passwd.c │ ├── pay.c │ ├── reqpay.c │ └── withd.c └── server │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── ecash.h │ ├── ecashdef.h │ ├── lucre.h │ ├── m_bank_encr.c │ ├── m_bank_mkey.c │ ├── m_bank_repl.c │ ├── m_bankhdr.c │ ├── m_cinfo.c │ ├── m_coindata.c │ ├── m_curr.c │ ├── m_dep.c │ ├── m_dep_1ack.c │ ├── m_dep_ack.c │ ├── m_deposit.c │ ├── m_encoding.c │ ├── m_encrypt.c │ ├── m_error.c │ ├── m_hdr_stuff.c │ ├── m_msg.c │ ├── m_onl_coin.c │ ├── m_onl_curr.c │ ├── m_openacc1.c │ ├── m_openacc2.c │ ├── m_payment.c │ ├── m_payment_hdr.c │ ├── m_payreq.c │ ├── m_pcoins.c │ ├── m_prot_setup.c │ ├── m_protocols.c │ ├── m_rsaenc.c │ ├── m_setup.c │ ├── m_setup_req.c │ ├── m_sigmsg.c │ ├── m_statement.c │ ├── m_status.c │ ├── m_userhdr.c │ ├── m_userinfo.c │ ├── m_userkey.c │ ├── m_userprivkey.c │ ├── m_userrec.c │ ├── m_wdfin.c │ ├── m_withdraw3.c │ ├── m_withdraw4.c │ ├── main.c │ ├── p_bankhdr.c │ ├── p_deposit.c │ ├── p_openacc.c │ ├── p_setup.c │ ├── u_crypt.c │ ├── u_sig.c │ ├── w_bankkeys.c │ ├── w_cashdb.c │ ├── w_common.c │ ├── w_create.c │ ├── w_curr.c │ ├── w_db.c │ ├── w_deposit.c │ ├── w_paydb.c │ ├── w_payment.c │ ├── w_recdb.c │ ├── w_status.c │ ├── w_tally.c │ ├── w_user.c │ ├── w_wallet.c │ ├── w_wddb.c │ └── w_withdraw.c ├── Lucre └── lucre.tgz ├── MAGENTA ├── magenta.c └── std_defs.h ├── MARS ├── mars.c └── std_defs.h ├── MD-RFC ├── RFC1319 ├── RFC1320 └── RFC1321 ├── MD4-HOLO ├── abcfile ├── makefile ├── md4.c ├── md4.exe ├── md4.h ├── md4block.asm ├── md4block.c ├── md4drive.c ├── readme └── rfc1186 ├── MD4 ├── MD4.H └── MD4C.C ├── MD5-KAR2 ├── KARNMD5.C └── KARNMD5.H ├── MD5-KARN ├── cipher.c ├── kw_msg.1 ├── kw_msg.2 ├── kw_msg.3 └── readme ├── MD5 ├── Makefile ├── README ├── global.h ├── md5-announcement.txt ├── md5.h ├── md5c.c ├── mddriver.c └── rfc1321.txt ├── MDC ├── md5.c ├── md5.h ├── mdc.c ├── mdc.h ├── mdc.txt └── mdcmain.c ├── MIMIC ├── ART.GRM ├── BALL.GRM ├── GETOPT.C ├── GETOPT.H ├── GLOBAL.H ├── MAKEFILE ├── MANIFEST ├── MIMIC ├── MIMIC.1 ├── MIMIC.C ├── MIMIC.DOC ├── OUTSPLIT.C ├── OUTSPLIT.H ├── PARSER.C ├── PARSER.H ├── RANDOM.C ├── RANDOM.H ├── README ├── SAMPLE ├── SENDEM-C ├── TABLE.C ├── TABLE.H ├── UTL.C ├── UTL.H ├── WORDS.C └── WORDS.H ├── MMB └── Mmb.c ├── MPJ2 ├── crc.cpp ├── crc.h ├── cryptmpj.c ├── cryptmpj.h ├── def.h └── mpj2.txt ├── MRRCIP ├── caesar.c ├── detran.for ├── entran.c ├── mktrnkey.for ├── mrrmkmon.c ├── p.h ├── periodic.c ├── phrase.c ├── playfair.for ├── readme ├── smplsub.c ├── solvevig.c ├── stradalf.c ├── straddle.c ├── subst.c ├── usage.c └── vigkey.c ├── Mars-AES ├── mars-dos-add.tar ├── mars-dos-optc.tar ├── mars-dos-optj.tar └── mars-dos-refc.tar ├── NETSCAPE └── unssl.c ├── NEWDE ├── NEWDE.C ├── NEWDE.H └── NEWDE.TXT ├── NEWDES ├── GETOPT.C ├── GETOPTPR.H ├── ND2MAIN.C ├── NEWDES2.C ├── NEWDES2P.H ├── UUCODE.C └── UUCODEPR.H ├── NHASH └── NHASH ├── NSEA ├── NCRACK.C ├── NCYCLE.C ├── NGCYCLE.C ├── NSEA.ASM ├── NSEA.C ├── NSEA.H ├── NSEA.OBJ ├── NSEA.TXT └── NSEAMAIN.C ├── OpenSSL └── openssl-0.9.5a.tar.gz ├── PATE ├── 3des.c ├── blumblum.c ├── des.c ├── dsa.c ├── dsa0.txt ├── elgamal.c ├── esign.c ├── ffs.c ├── gmr.c ├── gq.c ├── mdc_2.c ├── mdc_4.c ├── mh.c ├── micali.c ├── mmohash.c ├── rab.c ├── rabin.c ├── rc5.c ├── rsa.c ├── saferk64.c └── sha1.c ├── PEGWITC ├── binasc.c ├── binasc.h ├── blurb.txt ├── chall.htm ├── design.txt ├── ec_crypt.c ├── ec_crypt.h ├── ec_curve.c ├── ec_curve.h ├── ec_field.c ├── ec_field.h ├── ec_param.c ├── ec_param.h ├── ec_vlong.c ├── ec_vlong.h ├── ecgen.cpp ├── manual.txt ├── pegwit.c ├── pegwit.htm ├── pwjunk.c ├── pwkey.c ├── sha1.c ├── sha1.h ├── sqcts.c ├── sqcts.h ├── sqgen.c ├── square.c ├── square.h ├── square.tab ├── test.bat ├── test.jnk ├── test.pri ├── test.pub ├── test.sig ├── test.tx0 ├── test.tx1 ├── test.tx2 ├── test.tx3 ├── test.tx4 ├── test.tx5 ├── test.txt └── testpub.bat ├── PEGWITJ ├── ASCIIInputStream.java ├── Base64Input.java ├── Base64Output.java ├── Eccrypt.java ├── Ecparam.java ├── Ecpoint.java ├── Ecsig.java ├── Gfpoint.java ├── Harness.java ├── Pegwit.java ├── PegwitCLI.java ├── PegwitMsg.java ├── PegwitPrng.java ├── SHA1.java ├── Sqblock.java ├── Sqtab.java ├── Square.java ├── SquareCts.java ├── SquareVec.java ├── Vlpoint.java ├── readme.txt ├── test.bat ├── test.jnk ├── test.pri ├── test.pub ├── test.sig ├── test.tx0 ├── test.tx1 ├── test.tx2 ├── test.tx3 ├── test.tx4 ├── test.tx5 └── test.txt ├── PGP-0.09 ├── CHANGES ├── COPYRIGHT ├── MANIFEST ├── Makefile.PL ├── PGP │ ├── Armoury.pm │ ├── CFB.pm │ ├── CRC.pm │ ├── CmdLine.pm │ ├── CompressedData.pm │ ├── ConvEncryptedData.pm │ ├── DEK.pm │ ├── HashFactory.pm │ ├── Key.pm │ ├── KeyCertificate.pm │ ├── KeyGen.pm │ ├── KeyRing.pm │ ├── KeyRingEntry.pm │ ├── KeyRingTrust.pm │ ├── LiteralData.pm │ ├── PKEncryptedKey.pm │ ├── PacketFactory.pm │ ├── PacketHeader.pm │ ├── PublicKey.pm │ ├── PublicKeyCertificate.pm │ ├── PublicKeyRing.pm │ ├── PublicKeyRingEntry.pm │ ├── RandomStream.pm │ ├── SecretKey.pm │ ├── SecretKeyCertificate.pm │ ├── SecretKeyRing.pm │ ├── SecretKeyRingEntry.pm │ ├── Signature.pm │ └── UserId.pm ├── README ├── TODO ├── examples │ ├── README │ ├── conv_crack │ ├── conv_decrypt │ ├── conv_encrypt │ ├── dec │ ├── decrypt │ ├── disp_key │ ├── disp_keyring │ ├── enc.asc │ ├── enc.asc2 │ ├── enc2 │ ├── enc2.asc │ ├── encrypt │ ├── gary.pgp │ ├── getkey │ ├── getkey2 │ ├── getkey3 │ ├── getkey4 │ ├── htpass │ ├── key_crack │ ├── keygen │ ├── keygen2 │ ├── keygen3 │ ├── keygen4 │ ├── keygen_pass │ ├── keys │ ├── keys.asc │ ├── keyserver │ │ ├── getkey │ │ └── keyserver_backend │ ├── msg │ ├── msg.asc │ ├── notes │ ├── pgp_decrypt_filter │ ├── pubring.pgp │ ├── secring.pgp │ ├── signfile │ ├── test_pkc │ ├── test_read_keyring │ ├── test_read_keyring2 │ ├── test_read_keyring3 │ ├── test_skc │ ├── vanity_keygen │ ├── view │ ├── view_asc │ ├── view_packets │ └── x.asc └── test.pl ├── PIKE └── PIKE.C ├── PKC └── PKC ├── PLAYFAIR └── PLAYFAIR ├── PPSC └── PPSC ├── PRNGXOR ├── FOO ├── MAKEFILE ├── PRNGXOR.C ├── RND.C └── TRAN.C ├── PRV-ANMT └── PRV-ANMT ├── PYTHON1 └── Crypto │ ├── ChangeLog │ ├── Demo │ ├── README │ ├── cipher │ ├── crack.py │ ├── imp.py │ ├── secimp.py │ ├── sign.py │ ├── testkey.py │ └── voice │ ├── Doc │ ├── crypt.dvi │ ├── crypt.texi │ ├── paper.texi │ ├── pct.info │ ├── pct.info-1 │ └── pct.info-2 │ ├── INSTALL │ ├── Lib │ ├── DSA.py │ ├── ESIGN.py │ ├── ElGamal.py │ ├── RSA.py │ ├── pubkey.py │ ├── randpool.py │ ├── rfc1751.py │ └── testpk.py │ ├── Makefile │ ├── Makefile.pre.in │ ├── README │ ├── Setup.in │ ├── TODO │ ├── block │ ├── blowfish.c │ ├── des.c │ ├── des3.c │ ├── diamond.c │ ├── idea.c │ ├── rc5.c │ └── redoc3.c │ ├── buildkit │ ├── config.pct │ ├── curiosa │ ├── README │ ├── arc4.py │ ├── gentest.py │ ├── otp.py │ └── rsa.py │ ├── framewks │ ├── block.in │ ├── hash.in │ ├── simple.in │ └── stream.in │ ├── hash │ ├── haval.c │ ├── md2.c │ ├── md4.c │ ├── md5.c │ └── sha.c │ ├── key.amk │ ├── simple │ ├── crypt.c │ ├── haval.c │ ├── rotor.c │ └── ufcrypt.c │ ├── stream │ ├── arc4.c │ └── sapphire.c │ ├── test.py │ └── test │ ├── data.py │ └── routines.py ├── QUANTIZE ├── quantize.3 └── quantize.c ├── RADIX64 ├── COD64.C ├── DEC64.C ├── ENC64.C ├── MAKEFILE └── MKTAB.C ├── RAND-BAR └── ZIP ├── RAND-ECS └── RFC1750.TXT ├── RAND-ELL ├── GLOBAL.H ├── MAKEFILE ├── MD5.H ├── MD5C.C ├── RANA.C ├── RAND.C ├── RANG.C ├── RANH.C ├── RANM.C ├── RANNOS.SH ├── RANT.C ├── RANX.C ├── README └── RND.C ├── RAND-GBA └── RANDOM ├── RAND-HAR └── RANDMBIT.C ├── RAND-JEN └── RAN-TST.C ├── RAND-MB ├── makefile ├── message ├── randbyte.c ├── randtest.c ├── shs.c └── truerand.c ├── RAND-SCO └── RND-ANLS.C ├── RAND-VRI └── RANDOM ├── RC2-FIX └── rc2.c ├── RC2-UNK └── rc2.c ├── RC4-GUT └── RC4.ASM ├── RC4 └── RC4.C ├── RC5-KEL └── RC5.C ├── RC5-NIM └── RC5.C ├── RC5-RSA └── RC5 ├── RC5-WIL └── RC5.c ├── RC6-AES ├── rc6-dos-add.tar ├── rc6-dos-optc.tar ├── rc6-dos-optj.tar └── rc6-dos-refc.tar ├── RC6 ├── rc6.c └── std_defs.h ├── README.md ├── REDOC2 └── REDOC2.C ├── REDOC3 └── REDOC3 ├── RIJNDAEL ├── rijndael.c └── std_defs.h ├── RIJNJAVA └── Utils │ └── Rijndael │ ├── Rijndael.jar │ ├── cbc_d_m.txt │ ├── cbc_e_m.txt │ ├── classes │ └── Rijndael │ │ └── Rijndael.properties │ ├── ecb_d_m.txt │ ├── ecb_e_m.txt │ ├── ecb_vk.txt │ ├── ecb_vt.txt │ ├── out.dl7.txt │ ├── out.dl9.txt │ └── src │ ├── Rijndael_Algorithm.java │ └── Rijndael_Properties.java ├── RIPE-MD └── RIPE-MD ├── RIPEM3B4 └── ripem │ ├── clean.bat │ ├── clean1.bat │ ├── cmdline │ ├── getopt.c │ ├── getoptpr.h │ ├── getsys.c │ ├── getsyspr.h │ ├── parsit.c │ ├── parsitpr.h │ ├── rcerts.c │ ├── rcertsms.c │ ├── rcertsnt.dsp │ ├── rcertsnt.mak │ ├── ripemcmd.c │ ├── ripemnt.dsp │ ├── ripemnt.mak │ ├── usage.c │ ├── usagemsg.c │ └── usagepro.h │ ├── doc │ ├── access.txt │ ├── announce.txt │ ├── benchmrk.txt │ ├── benchold.txt │ ├── changes.txt │ ├── install.txt │ ├── makemac.txt │ ├── miscnote.txt │ ├── noncomme.txt │ ├── old │ │ ├── ezusage.txt │ │ ├── format.txt │ │ ├── manifest.txt │ │ ├── ripem.1 │ │ ├── ripembeg.doc │ │ ├── ripembeg.ps │ │ ├── ripemsrv.doc │ │ ├── ripemsrv.ps │ │ ├── ripemtlk.doc │ │ ├── ripemtlk.ps │ │ └── todo.txt │ ├── pemdirec.txt │ ├── post-1.0.txt │ ├── post-1.2b2 │ ├── post-12.txt │ ├── post-12a.txt │ ├── rcerts.man │ ├── ripem-at │ ├── ripem-fa │ ├── ripem.man │ ├── ripemapi.htm │ ├── ripemapi.txt │ ├── ripemfmt.doc │ ├── ripemfmt.txt │ ├── ripemusr.htm │ ├── ripemusr.txt │ ├── rsaref-l.txt │ ├── rsign.c │ ├── server.txt │ └── tasks.txt │ ├── mac68k │ ├── readme │ └── rsaref │ │ ├── des68.c │ │ ├── nn.h │ │ ├── nn68.c │ │ ├── r_stdlib.c │ │ └── rsaref.h │ ├── main │ ├── bemparse.c │ ├── bemparse.h │ ├── bfstream.c │ ├── bfstream.h │ ├── boolean.h │ ├── certder.h │ ├── certutil.c │ ├── certutil.h │ ├── crackhed.c │ ├── crackhpr.h │ ├── debug.out │ ├── derkey.c │ ├── derkeypr.h │ ├── do_djgcc.bat │ ├── headers.h │ ├── hexbin.c │ ├── hexbinpr.h │ ├── keyder.c │ ├── keyderpr.h │ ├── keyfield.h │ ├── keyman.c │ ├── keymanpr.h │ ├── list.c │ ├── mainnt.dsp │ ├── mainnt.mak │ ├── makedost.bat │ ├── makefile │ ├── makefile.vc │ ├── msc7.c │ ├── p.h │ ├── pemformt.c │ ├── pkcformt.c │ ├── prcodepr.h │ ├── proctype.asm │ ├── protserv.h │ ├── pubinfo.c │ ├── pubinfop.h │ ├── rdwrmsg.c │ ├── rdwrmsgp.h │ ├── ripem.h │ ├── ripem.tma │ ├── ripem.vcw │ ├── ripem.wsp │ ├── ripemgcc.lrf │ ├── ripemmai.c │ ├── ripemmai.mak │ ├── ripemold.mak │ ├── ripemsig.mak │ ├── ripemsoc.c │ ├── ripemsoc.mak │ ├── ripemsop.h │ ├── strutil.c │ ├── strutilp.h │ ├── temp.mak │ ├── test1.prv │ ├── test1.pub │ ├── testd2.bat │ ├── timeshif.c │ └── version.h │ ├── makedos.bat │ ├── makefile │ ├── makent.bat │ ├── makesig.bat │ ├── readme │ ├── rsaref │ ├── doc │ │ ├── dhdemo.txt │ │ ├── info.txt │ │ ├── porting.txt │ │ ├── rdemo.txt │ │ ├── readme.txt │ │ ├── rsaref.txt │ │ └── scripts.txt │ ├── install │ │ ├── dos │ │ │ └── makefile │ │ ├── mac │ │ │ ├── dhdemo.mak │ │ │ └── rdemo.mak │ │ ├── makefile │ │ ├── rsaref.lrf │ │ ├── rsaref.mak │ │ ├── rsarefnt.dsp │ │ ├── rsarefnt.mak │ │ └── unix │ │ │ └── makefile │ ├── rdemo │ │ ├── dhdemo.c │ │ ├── makefile │ │ ├── rdemo.c │ │ └── scripts │ │ │ ├── 20 │ │ │ ├── 1024-1.env │ │ │ ├── 1024-1.iv │ │ │ ├── 1024-1.key │ │ │ ├── 1024-5.sig │ │ │ ├── 1024.in │ │ │ ├── 1024.key │ │ │ ├── 256dh.in │ │ │ ├── 256dh.par │ │ │ ├── 256dha.key │ │ │ ├── 256dha.pri │ │ │ ├── 256dha.pub │ │ │ ├── 256dhb.key │ │ │ ├── 256dhb.pri │ │ │ ├── 256dhb.pub │ │ │ ├── 508-1.env │ │ │ ├── 508-1.iv │ │ │ ├── 508-1.key │ │ │ ├── 508-5.sig │ │ │ ├── 508.in │ │ │ ├── 508.key │ │ │ ├── 512a.in │ │ │ ├── 512a1.env │ │ │ ├── 512a1.iv │ │ │ ├── 512a1.key │ │ │ ├── 512a1big.env │ │ │ ├── 512a1big.iv │ │ │ ├── 512a1big.key │ │ │ ├── 512a2.env │ │ │ ├── 512a2.iv │ │ │ ├── 512a2.key │ │ │ ├── 512a2.sig │ │ │ ├── 512a3.env │ │ │ ├── 512a3.iv │ │ │ ├── 512a3.key │ │ │ ├── 512a5.sig │ │ │ ├── 512a5big.sig │ │ │ ├── 512ax.env │ │ │ ├── 512ax.iv │ │ │ ├── 512ax.key │ │ │ ├── 512b.in │ │ │ ├── 512b1.env │ │ │ ├── 512b1.iv │ │ │ ├── 512b1.key │ │ │ ├── 512b5.sig │ │ │ ├── 512dh.in │ │ │ ├── 512dha.key │ │ │ ├── 512dha.pri │ │ │ ├── 512dha.pub │ │ │ ├── 512dhb.key │ │ │ ├── 512dhb.pri │ │ │ ├── 512dhb.pub │ │ │ ├── 767-1.env │ │ │ ├── 767-1.iv │ │ │ ├── 767-1.key │ │ │ ├── 767-5.sig │ │ │ ├── 767.in │ │ │ ├── 767.key │ │ │ ├── bigfile │ │ │ └── file │ ├── readme │ └── source │ │ ├── des.h │ │ ├── desc.c │ │ ├── digit.c │ │ ├── digit.h │ │ ├── global.h │ │ ├── longlong.h │ │ ├── md2.h │ │ ├── md2c.c │ │ ├── md5.h │ │ ├── md5c.c │ │ ├── nn.c │ │ ├── nn.h │ │ ├── prime.c │ │ ├── prime.h │ │ ├── r_dh.c │ │ ├── r_encode.c │ │ ├── r_enhanc.c │ │ ├── r_keygen.c │ │ ├── r_random.c │ │ ├── r_random.h │ │ ├── r_stdlib.c │ │ ├── rc5_32.h │ │ ├── rc5_32st.c │ │ ├── rsa.c │ │ ├── rsa.h │ │ ├── rsaref.h │ │ ├── rx2.h │ │ ├── rx2c.c │ │ ├── sha1.h │ │ ├── sha1c.c │ │ └── targets.mak │ ├── server │ ├── ave.awk │ ├── copymail.c │ ├── credumpb.c │ ├── crekeydb.c │ ├── crekeydp.h │ ├── db2flat.c │ ├── db2flatp.h │ ├── doreg │ ├── dosend │ ├── dosend2 │ ├── doserv │ ├── getreta.c │ ├── getretap.h │ ├── givepubp.h │ ├── givepubs.c │ ├── makefile │ ├── one.c │ ├── opeclo.c │ ├── opeclopr.h │ ├── r_proto.txt │ ├── readsock.c │ ├── redirsrv.c │ ├── rkeyreg.c │ ├── rkeyregp.h │ ├── rkeyserp.h │ ├── rkeyserv.c │ ├── run-serv │ ├── run.c │ ├── runprot.h │ ├── sendnetm.c │ ├── sendnetp.h │ ├── sendsock.c │ ├── sendsock.mak │ ├── srvfiles.h │ ├── startnep.h │ ├── startnet.c │ ├── testmail.c │ ├── testreg │ ├── testrun.c │ └── update-k │ ├── test │ ├── crls │ ├── dostest.bat │ ├── dotests.bat │ ├── ede-msg.enc │ ├── ede-msg.msg │ ├── message │ ├── message.enc │ ├── message2 │ ├── message2.enc │ ├── out │ ├── preferen │ ├── privb │ ├── privkey │ ├── pubb │ ├── pubkeys.beg │ ├── pubkeys.exp │ ├── pubkeys.org │ ├── ripem-be │ ├── show.c │ ├── signed.txt │ ├── signin.txt │ ├── signout2.txt │ ├── t1023d.bat │ ├── t1023e.bat │ ├── t1023g.bat │ ├── t1024e │ ├── test.in │ ├── test1.prv │ ├── test1.pub │ ├── test112.prv │ ├── test1bad.pub │ ├── test1o.prv │ ├── test1o.pub │ ├── testd.bat │ ├── testd1.bat │ ├── testd2.bat │ ├── testdbad.bat │ ├── testdd.bat │ ├── testdd2.bat │ ├── testdede.bat │ ├── teste.bat │ ├── testeede.bat │ ├── testfing.bat │ ├── testg.bat │ ├── testgen.bat │ └── testsig.bat │ └── util │ ├── display- │ ├── elm-ripe │ ├── emacs │ ├── mailcryp.el │ ├── ripem-ol.el │ └── ripem.el │ ├── encrypt- │ ├── hex2bin.c │ ├── mailrc │ ├── makefile │ ├── man2code.c │ ├── mushrc │ ├── nobksp.c │ ├── old-ripe │ ├── prencode.c │ ├── prencode.h │ ├── quote-or.c │ ├── quote.c │ ├── repnoh.c │ ├── ripelm2 │ ├── ripem-en │ ├── ripemd │ ├── ripemr │ ├── send-rip │ ├── stripmsg.c │ ├── tprencod.c │ ├── tstbem.c │ └── unziprip.bat ├── RSA-CPP ├── RSA.CPP ├── RSA.HPP ├── VLONG.CPP └── VLONG.HPP ├── RSAEURO ├── RSAEuro-1.04.tar.gz ├── RSAEuro-1.04d.zip ├── RSAEuro-1.04s.zip ├── SHSFix.zip └── readme.txt ├── RSAREF20 ├── DOC │ ├── DHDEMO.TXT │ ├── INFO.TXT │ ├── LICENSE.TXT │ ├── PORTING.TXT │ ├── RDEMO.TXT │ ├── README.TXT │ ├── RSAREF.TXT │ └── SCRIPTS.TXT ├── INSTALL │ ├── DOS │ │ └── MAKEFILE │ ├── MAC │ │ ├── DHDEMO.MAK │ │ └── RDEMO.MAK │ └── UNIX │ │ └── MAKEFILE ├── RDEMO │ ├── DHDEMO.C │ ├── RDEMO.C │ └── SCRIPTS │ │ ├── 1024-1.ENV │ │ ├── 1024-1.IV │ │ ├── 1024-1.KEY │ │ ├── 1024-5.SIG │ │ ├── 1024.IN │ │ ├── 1024.KEY │ │ ├── 256DH.IN │ │ ├── 256DH.PAR │ │ ├── 256DHA.KEY │ │ ├── 256DHA.PRI │ │ ├── 256DHA.PUB │ │ ├── 256DHB.KEY │ │ ├── 256DHB.PRI │ │ ├── 256DHB.PUB │ │ ├── 508-1.ENV │ │ ├── 508-1.IV │ │ ├── 508-1.KEY │ │ ├── 508-5.SIG │ │ ├── 508.IN │ │ ├── 508.KEY │ │ ├── 512A.IN │ │ ├── 512A1.ENV │ │ ├── 512A1.IV │ │ ├── 512A1.KEY │ │ ├── 512A1BIG.ENV │ │ ├── 512A1BIG.IV │ │ ├── 512A1BIG.KEY │ │ ├── 512A2.ENV │ │ ├── 512A2.IV │ │ ├── 512A2.KEY │ │ ├── 512A2.SIG │ │ ├── 512A3.ENV │ │ ├── 512A3.IV │ │ ├── 512A3.KEY │ │ ├── 512A5.SIG │ │ ├── 512A5BIG.SIG │ │ ├── 512AX.ENV │ │ ├── 512AX.IV │ │ ├── 512AX.KEY │ │ ├── 512B.IN │ │ ├── 512B1.ENV │ │ ├── 512B1.IV │ │ ├── 512B1.KEY │ │ ├── 512B5.SIG │ │ ├── 512DH.IN │ │ ├── 512DHA.KEY │ │ ├── 512DHA.PRI │ │ ├── 512DHA.PUB │ │ ├── 512DHB.KEY │ │ ├── 512DHB.PRI │ │ ├── 512DHB.PUB │ │ ├── 767-1.ENV │ │ ├── 767-1.IV │ │ ├── 767-1.KEY │ │ ├── 767-5.SIG │ │ ├── 767.IN │ │ ├── 767.KEY │ │ ├── BIGFILE │ │ └── FILE └── SOURCE │ ├── DES.H │ ├── DESC.C │ ├── DIGIT.C │ ├── DIGIT.H │ ├── GLOBAL.H │ ├── MD2.H │ ├── MD2C.C │ ├── MD5.H │ ├── MD5C.C │ ├── NN.C │ ├── NN.H │ ├── PRIME.C │ ├── PRIME.H │ ├── RSA.C │ ├── RSA.H │ ├── RSAREF.H │ ├── R_DH.C │ ├── R_ENCODE.C │ ├── R_ENHANC.C │ ├── R_KEYGEN.C │ ├── R_RANDOM.C │ ├── R_RANDOM.H │ ├── R_STDLIB.C │ └── TARGETS.MAK ├── RUBY ├── DEF.H ├── MPJ8.ASC ├── RLOCK.CPP ├── RLOCK.EXE ├── RUBY.CPP ├── RUBY.H ├── RUBY_M5.DOC └── RUBY_M5.PS ├── RUBY_M5 ├── DEF.H ├── MPJ8.ASC ├── RLOCK.CPP ├── RLOCK.EXE ├── RUBY.CPP ├── RUBY.H ├── RUBY_M5.DOC └── RUBY_M5.PS ├── Ripem160 ├── hashtest.c ├── rmd128.c ├── rmd128.h ├── rmd160.c └── rmd160.h ├── Rsa_faq └── rsalabs_faq41.pdf ├── S1 └── s1.c ├── SAFER+ ├── safer+.c └── std_defs.h ├── SAFER-MO ├── README ├── SAFERCMD.TXT ├── SAFER_SK.TXT ├── check.c ├── check.ref ├── makefile ├── safer.1 ├── safer.c ├── safer.exe ├── safer.h └── safercmd.c ├── SAFER-RO └── SAFER.C ├── SAFER-WI └── safer.c ├── SAPPHIRE ├── MAKEFILE ├── MPJ8.ASC ├── SAPPHIRE.ASC ├── SAPPHIRE.CPP ├── SAPPHIRE.DOC ├── SAPPHIRE.H ├── SAPPHIRE.PS ├── SAPPHIRE.TXT ├── SAPPTEST.CPP ├── STEST.EXE └── STEST.PAS ├── SCRT-FIN ├── IDEA.C ├── IDEA.H ├── MD5.C ├── MD5.H ├── SECSPLIT.C ├── SECSPLIT.DOC ├── SECSPLIT.EXE └── USUALS.H ├── SCRT-PEA └── SHARING ├── SCRT-WIL └── secret_s.c ├── SEAL-ROE └── SEAL.C ├── SEAL-WIL └── seal.c ├── SERPENT ├── serpent.c └── std_defs.h ├── SHA-GUT └── SHS ├── SHA-REI └── sha1.c ├── SNEFRU ├── CORRECTS ├── README ├── SNEFRU.C └── TESTSNEF ├── SNUFFLE ├── Makefile ├── README ├── snuffle.1 ├── snuffle.c └── unsnuffle.c ├── SPEED ├── Makefile ├── cert.c ├── certdata ├── howfast.c ├── speedc.c └── speedc.h ├── SPLAY ├── README ├── splay.1 ├── splay.c ├── splay.i └── unsplay.c ├── SURF ├── readme.txt └── surf.c ├── Serp-AES ├── serpent-dos-optc.tar ├── serpent-dos-optj.tar └── serpent-dos-refc.tar ├── Sha-rub └── SHA ├── Ssleay └── SSLeay-0.9.0b.tar.gz ├── Strandom └── strandom.tar.Z ├── TEA-MIR └── tea_x86.asm ├── TIGER ├── makefile ├── sboxes.c ├── testtiger.c └── tiger.c ├── TIGER32 ├── makefile ├── sboxes.c ├── testtiger.c └── tiger.c ├── TIS-MOSS └── Tis-moss.txt ├── TRAN-PWD ├── FOO ├── MAKEFILE ├── PRNGXOR.C ├── README ├── RND.C └── TRAN.C ├── TRAN ├── FOO ├── MAKEFILE ├── PRNGXOR.C ├── README ├── RND.C └── TRAN.C ├── TRNSPOSE ├── MANIFEST ├── Makefile ├── README ├── rnd.c └── tran.c ├── TRPLEDES ├── DES3.H ├── DES3_68K.C ├── DES3_POR.C └── TECHNOTE ├── TWOFISH ├── std_defs.h └── twofish.c ├── VIGENERE └── VIGENERE ├── VIGSOLVE └── SOLVEVIG.C ├── Yarrow ├── Zlib │ ├── zconf.h │ ├── zlib.h │ ├── zlibd.lib │ └── zlibr.lib ├── entropyhooks │ ├── entropyhooks.dsp │ ├── entropyhooks.mak │ ├── entropyhooks.plg │ ├── entropysources.h │ ├── hooks.c │ ├── hooks.h │ ├── hookspriv.h │ └── readme-hooks.txt ├── frontend │ ├── FrontEnd.c │ ├── frontend.aps │ ├── frontend.dsp │ ├── frontend.h │ ├── frontend.mak │ ├── frontend.plg │ ├── frontend.rc │ ├── icon1.ico │ ├── readme-frontend.txt │ └── resource.h ├── prngcore │ ├── 95only.c │ ├── 95only.h │ ├── assertverify.h │ ├── comp.c │ ├── comp.h │ ├── ntonly.c │ ├── ntonly.h │ ├── prng.c │ ├── prng.h │ ├── prng.mut │ ├── prngcore.dsp │ ├── prngcore.mak │ ├── prngcore.plg │ ├── prngpriv.h │ ├── readme-crypto.txt │ ├── readme-prngcoder.txt │ ├── readme-prnguser.txt │ ├── sha1mod.c │ ├── sha1mod.h │ ├── userdefines.h │ ├── usersources.h │ └── yarrow.h ├── readme - corrections.txt ├── readme - yarrow.txt ├── smf │ ├── readme-smf.txt │ ├── smf.c │ ├── smf.dsp │ ├── smf.h │ ├── smf.mak │ ├── smf.plg │ └── smfpriv.h ├── testapp │ ├── readme-testapp.txt │ ├── testapp.c │ ├── testapp.dsp │ ├── testapp.mak │ └── testapp.plg ├── yarrow.dsw ├── yarrow.ncb └── yarrow.opt ├── ZIP └── ZIP ├── cryptl21b ├── CAPI.H ├── CRYPT.C ├── CRYPT.H ├── CRYPTAPI.C ├── CRYPTCAP.C ├── CRYPTCFG.C ├── CRYPTCRT.C ├── CRYPTCTX.H ├── CRYPTDBX.C ├── CRYPTDEV.C ├── CRYPTENV.C ├── CRYPTKEY.C ├── CRYPTKRN.C ├── CRYPTLIB.ASN ├── CRYPTLIB.C ├── CRYPTOS.H ├── CRYPTSES.C ├── ENDIAN.C ├── LIB_3DES.C ├── LIB_BF.C ├── LIB_CAST.C ├── LIB_DBMS.C ├── LIB_DES.C ├── LIB_DH.C ├── LIB_DSA.C ├── LIB_ELG.C ├── LIB_HMD5.C ├── LIB_HRMD.C ├── LIB_HSHA.C ├── LIB_IDEA.C ├── LIB_KEYX.C ├── LIB_KG.C ├── LIB_MD2.C ├── LIB_MD4.C ├── LIB_MD5.C ├── LIB_MDC2.C ├── LIB_RAND.C ├── LIB_RC2.C ├── LIB_RC4.C ├── LIB_RC5.C ├── LIB_RIPE.C ├── LIB_RSA.C ├── LIB_SAFR.C ├── LIB_SHA.C ├── LIB_SIGN.C ├── LIB_SKIP.C └── README.1ST ├── cryptl30 ├── Amiga_Dmakefile ├── Amiga_Smakefile ├── CertInst.dsp ├── Certinst.dsw ├── Certinst.ncb ├── Certinst.opt ├── Crypt.def ├── Crypt.ico ├── Crypt.rc ├── Crypt32.dsp ├── Crypt32.dsw ├── MVSBuild.job ├── Mac_MWCW_Project.sit ├── Mac_cl32.exp ├── TEST.DEF ├── TEST.MAK ├── VMBuild.exec ├── bcl32.lib ├── bn │ ├── alpha.s │ ├── bn-win32.asm │ ├── bn-win32.obj │ ├── bn.h │ ├── bn86unix.cpp │ ├── bn_add.c │ ├── bn_blind.c │ ├── bn_div.c │ ├── bn_exp.c │ ├── bn_gcd.c │ ├── bn_lcl.h │ ├── bn_lib.c │ ├── bn_mod.c │ ├── bn_mont.c │ ├── bn_mul.c │ ├── bn_mulw.c │ ├── bn_prime.h │ ├── bn_recp.c │ ├── bn_shift.c │ ├── bn_sqr.c │ ├── bn_sub.c │ ├── bn_word.c │ ├── bugs.txt │ ├── pa-risc.s │ ├── pa-risc2.s │ ├── r3000.s │ ├── sparc.s │ ├── x86w16.asm │ ├── x86w32.asm │ └── x86w32.obj ├── capi.bas ├── capi.h ├── certinst.exe ├── cl16.mak ├── crypt.c ├── crypt.exp ├── crypt.h ├── crypt │ ├── Copyright │ ├── b-win32.asm │ ├── b-win32.obj │ ├── bf_ecb.c │ ├── bf_enc.c │ ├── bf_locl.h │ ├── bf_pi.h │ ├── bf_skey.c │ ├── blowfish.h │ ├── bx86unix.cpp │ ├── c-win32.asm │ ├── c-win32.obj │ ├── c_ecb.c │ ├── c_enc.c │ ├── c_skey.c │ ├── cast.h │ ├── cast_lcl.h │ ├── cast_s.h │ ├── cx86unix.cpp │ ├── d-win32.asm │ ├── d-win32.obj │ ├── des.h │ ├── des_enc.c │ ├── des_locl.h │ ├── dx86unix.cpp │ ├── ecb3_enc.c │ ├── ecb_enc.c │ ├── idea.c │ ├── idea.h │ ├── idea68k.s │ ├── idea8086.asm │ ├── idea_386.c │ ├── podd.h │ ├── r-win32.asm │ ├── r-win32.obj │ ├── rc2.c │ ├── rc2.h │ ├── rc4.h │ ├── rc4_enc.c │ ├── rc4_locl.h │ ├── rc4_skey.c │ ├── rc5.c │ ├── rc5.h │ ├── rx86unix.cpp │ ├── safer.asm │ ├── safer.c │ ├── safer.h │ ├── safer_c.obj │ ├── set_key.c │ ├── sk.h │ ├── skipjack.c │ ├── spr.h │ └── testdes.h ├── crypt32.def ├── crypt32.ico ├── crypt32.mak ├── crypt32.rc ├── cryptacl.h ├── cryptapi.c ├── cryptcfg.c ├── cryptcrt.c ├── cryptctx.h ├── cryptdbx.c ├── cryptdev.c ├── cryptenv.c ├── cryptkey.c ├── cryptkrn.c ├── cryptkrn.h ├── cryptlib.asn ├── cryptlib.c ├── cryptlib.h ├── cryptlib.pas ├── cryptmch.c ├── cryptmis.c ├── cryptos.h ├── cryptses.c ├── endian.c ├── envelope │ ├── deenvel.c │ ├── envelope.c │ ├── envelope.h │ ├── octetstr.c │ ├── pgp.h │ ├── pgp_deen.c │ ├── pgp_misc.c │ └── resource.c ├── hash │ ├── asm.h │ ├── clink.h │ ├── m-win32.asm │ ├── m-win32.obj │ ├── md2.c │ ├── md2.h │ ├── md4.c │ ├── md4.h │ ├── md5.h │ ├── md5_dgst.c │ ├── md5_locl.h │ ├── mdc2.h │ ├── mdc2dgst.c │ ├── mx86unix.cpp │ ├── ripecore.c │ ├── ripemd.c │ ├── ripemd.h │ ├── rmd160cp.c │ ├── rmd160cp.s │ ├── s-win32.asm │ ├── s-win32.obj │ ├── sha.h │ ├── sha1dgst.c │ ├── sha_dgst.c │ ├── sha_locl.h │ └── sx86unix.cpp ├── keymgmt │ ├── asn1.c │ ├── asn1.h │ ├── asn1keys.c │ ├── asn1objs.c │ ├── asn1objs.h │ ├── asn1oid.c │ ├── asn1oid.h │ ├── ber.h │ ├── cert.c │ ├── cert.h │ ├── certattr.h │ ├── certchk.c │ ├── certchn.c │ ├── certcomp.c │ ├── certechk.c │ ├── certedef.c │ ├── certexrw.c │ ├── certext.c │ ├── certio.c │ ├── certrust.c │ ├── certsig.c │ ├── certstr.c │ ├── cms.c │ ├── dumpasn1.c │ ├── dumpasn1.cfg │ ├── stream.c │ └── stream.h ├── lib_3des.c ├── lib_bf.c ├── lib_cast.c ├── lib_dbms.c ├── lib_des.c ├── lib_dh.c ├── lib_dsa.c ├── lib_elg.c ├── lib_hmd5.c ├── lib_hrmd.c ├── lib_hsha.c ├── lib_idea.c ├── lib_kea.c ├── lib_keyx.c ├── lib_kg.c ├── lib_md2.c ├── lib_md4.c ├── lib_md5.c ├── lib_mdc2.c ├── lib_rc2.c ├── lib_rc4.c ├── lib_rc5.c ├── lib_ripe.c ├── lib_rsa.c ├── lib_safr.c ├── lib_sha.c ├── lib_sign.c ├── lib_skip.c ├── makefile ├── makefile.dj2 ├── makefile.os2 ├── misc │ ├── dbxhttp.c │ ├── dbxldap.c │ ├── dbxmsql.c │ ├── dbxmysql.c │ ├── dbxodbc.c │ ├── dbxoracl.c │ ├── dbxpgp.c │ ├── dbxpk12.c │ ├── dbxpk15.c │ ├── dbxpostg.c │ ├── dbxscard.c │ ├── dev_fort.c │ ├── dev_pk11.c │ ├── dev_sys.c │ ├── device.h │ ├── http4u.h │ ├── keyset.h │ ├── lber.h │ ├── ldap.h │ ├── net.h │ ├── net_tcp.c │ ├── pkcs11.h │ ├── pkcs11f.h │ ├── pkcs11t.h │ ├── random.h │ ├── rnd4758.c │ ├── rndbeos.c │ ├── rnddos.c │ ├── rndmac.c │ ├── rndnsk.c │ ├── rndos2.c │ ├── rndunix.c │ ├── rndvm.c │ ├── rndwin16.c │ ├── rndwin32.c │ ├── scard.h │ ├── scase.c │ ├── scgemplu.c │ ├── scmisc.c │ ├── sctowito.c │ └── tcp4u.h ├── nsldapssl32v30.dll ├── readme.1st ├── scoptions ├── session │ ├── cmp.c │ ├── session.h │ ├── ssh.c │ └── ssl.c ├── tcp4w.dll ├── tcp4w32.dll ├── test │ ├── ca_key.p15 │ ├── cert.der │ ├── cert_chn.der │ ├── cert_crl.der │ ├── cert_req.der │ ├── cert_spk.der │ ├── certinst.c │ ├── certs │ │ ├── TCERT01.DER │ │ ├── TCERT02.DER │ │ ├── TCERT03.DER │ │ ├── TCERT04.DER │ │ ├── TCERT05.DER │ │ ├── TCERT06.DER │ │ ├── VCERT01.DER │ │ ├── VCERT02.DER │ │ ├── VCERT03.DER │ │ ├── VCERT04.DER │ │ └── VCERT05.DER │ ├── certutil.c │ ├── crlcert1.der │ ├── crlcert2.der │ ├── key.p12 │ ├── pubring.pgp │ ├── secring.pgp │ ├── smime.p7s │ ├── test.h │ ├── testcert.c │ ├── testenv.c │ ├── testhl.c │ ├── testkey.c │ ├── testlib.c │ ├── testsess.c │ └── user_key.p15 ├── test32.dsp ├── test32.dsw └── zlib │ ├── adler32.c │ ├── deflate.c │ ├── deflate.h │ ├── gvmat32.asm │ ├── gvmat32.obj │ ├── infblock.c │ ├── infblock.h │ ├── infcodes.c │ ├── infcodes.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ ├── infutil.h │ ├── trees.c │ ├── trees.h │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── crypto32 ├── 3desval.dat ├── 3way.cpp ├── 3way.h ├── 3wayval.dat ├── Makefile ├── algebra.cpp ├── algebra.h ├── arc4.cpp ├── arc4.h ├── asn.cpp ├── asn.h ├── base64.cpp ├── base64.h ├── bench.cpp ├── bench.h ├── bfinit.cpp ├── blowfish.cpp ├── blowfish.h ├── blum1024.dat ├── blum2048.dat ├── blum512.dat ├── blumgold.cpp ├── blumgold.h ├── blumshub.cpp ├── blumshub.h ├── cast.cpp ├── cast.h ├── cast128s.cpp ├── castval.dat ├── cbc.cpp ├── cbc.h ├── cbcmac.h ├── config.h ├── crc.cpp ├── crc.h ├── cryptest.dsp ├── cryptest.dsw ├── cryptlib.cpp ├── cryptlib.dsp ├── cryptlib.h ├── default.cpp ├── default.h ├── des.cpp ├── des.h ├── descert.dat ├── dessp.cpp ├── dh.cpp ├── dh.h ├── dh1024.dat ├── dh2.cpp ├── dh2.h ├── dh2048.dat ├── dh512.dat ├── diamond.cpp ├── diamond.dat ├── diamond.h ├── diamondt.cpp ├── dmac.h ├── dsa.cpp ├── dsa.h ├── dsa1024.dat ├── dsa512.dat ├── ec2n.cpp ├── ec2n.h ├── eccrypto.cpp ├── eccrypto.h ├── ecp.cpp ├── ecp.h ├── elgamal.cpp ├── elgamal.h ├── elgc1024.dat ├── elgc2048.dat ├── elgc512.dat ├── eprecomp.cpp ├── eprecomp.h ├── files.cpp ├── files.h ├── filters.cpp ├── filters.h ├── forkjoin.cpp ├── forkjoin.h ├── gf256.cpp ├── gf256.h ├── gf2_32.cpp ├── gf2_32.h ├── gf2n.cpp ├── gf2n.h ├── gost.cpp ├── gost.h ├── gostval.dat ├── gzip.cpp ├── gzip.h ├── haval.cpp ├── haval.h ├── havalcer.dat ├── hex.cpp ├── hex.h ├── hmac.h ├── idea.cpp ├── idea.h ├── ideaval.dat ├── integer.cpp ├── integer.h ├── iterhash.cpp ├── iterhash.h ├── license.txt ├── lubyrack.h ├── luc.cpp ├── luc.h ├── luc1024.dat ├── luc2048.dat ├── luc512.dat ├── lucc1024.dat ├── lucc512.dat ├── lucdif.dat ├── lucs1024.dat ├── lucs512.dat ├── mars.cpp ├── mars.h ├── marss.cpp ├── marsval.dat ├── md2.cpp ├── md2.h ├── md5.cpp ├── md5.h ├── md5mac.cpp ├── md5mac.h ├── mdc.h ├── misc.cpp ├── misc.h ├── modarith.h ├── modes.cpp ├── modes.h ├── modexppc.cpp ├── modexppc.h ├── mqv.cpp ├── mqv.h ├── mqv1024.dat ├── mqv2048.dat ├── mqv512.dat ├── nbtheory.cpp ├── nbtheory.h ├── nr.cpp ├── nr.h ├── nr1024.dat ├── nr2048.dat ├── nr512.dat ├── oaep.cpp ├── oaep.h ├── pch.cpp ├── pch.h ├── pkcspad.cpp ├── pkcspad.h ├── polynomi.cpp ├── polynomi.h ├── pssr.h ├── pubkey.cpp ├── pubkey.h ├── queue.cpp ├── queue.h ├── rabi1024.dat ├── rabi2048.dat ├── rabi512.dat ├── rabin.cpp ├── rabin.h ├── randpool.cpp ├── randpool.h ├── rc2.cpp ├── rc2.h ├── rc2val.dat ├── rc5.cpp ├── rc5.h ├── rc5val.dat ├── rc6.cpp ├── rc6.h ├── rc6val.dat ├── rdtables.cpp ├── readme.txt ├── rijndael.cpp ├── rijndael.dat ├── rijndael.h ├── ripemd.cpp ├── ripemd.h ├── rng.cpp ├── rng.h ├── rsa.cpp ├── rsa.h ├── rsa1024.dat ├── rsa2048.dat ├── rsa400pb.dat ├── rsa400pv.dat ├── rsa512.dat ├── rsa512a.dat ├── rw.cpp ├── rw.h ├── rw1024.dat ├── rw2048.dat ├── rw512.dat ├── safer.cpp ├── safer.h ├── saferval.dat ├── sapphire.cpp ├── sapphire.h ├── seal.cpp ├── seal.h ├── secshare.cpp ├── secshare.h ├── secsplit.cpp ├── secsplit.h ├── serpent.cpp ├── serpent.h ├── serpentv.dat ├── sha.cpp ├── sha.h ├── shark.cpp ├── shark.h ├── sharkbox.cpp ├── sharkval.dat ├── smartptr.h ├── square.cpp ├── square.h ├── squaretb.cpp ├── squareva.dat ├── tea.cpp ├── tea.h ├── test.cpp ├── tftables.cpp ├── tiger.cpp ├── tiger.h ├── tigertab.cpp ├── twofish.cpp ├── twofish.h ├── twofishv.dat ├── usage.dat ├── validat1.cpp ├── validat2.cpp ├── validat3.cpp ├── validate.h ├── wake.cpp ├── wake.h ├── words.h ├── xormac.h ├── zbits.cpp ├── zbits.h ├── zdeflate.cpp ├── zdeflate.h ├── zinflate.cpp ├── zinflate.h ├── ztrees.cpp └── ztrees.h ├── logi-dev ├── README ├── doc.zip ├── fingerprint ├── logi.crypto.jar └── src.zip └── logi ├── README ├── doc.zip ├── fingerprint ├── logi.crypto.jar └── src.zip /2FSH-OPT/AES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/AES.H -------------------------------------------------------------------------------- /2FSH-OPT/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/DEBUG.H -------------------------------------------------------------------------------- /2FSH-OPT/PLATFORM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/PLATFORM.H -------------------------------------------------------------------------------- /2FSH-OPT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/README -------------------------------------------------------------------------------- /2FSH-OPT/TABLE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/TABLE.H -------------------------------------------------------------------------------- /2FSH-OPT/TST2FISH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/TST2FISH.C -------------------------------------------------------------------------------- /2FSH-OPT/TWOFISH2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-OPT/TWOFISH2.C -------------------------------------------------------------------------------- /2FSH-REF/AES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/AES.H -------------------------------------------------------------------------------- /2FSH-REF/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/DEBUG.H -------------------------------------------------------------------------------- /2FSH-REF/PLATFORM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/PLATFORM.H -------------------------------------------------------------------------------- /2FSH-REF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/README -------------------------------------------------------------------------------- /2FSH-REF/TABLE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/TABLE.H -------------------------------------------------------------------------------- /2FSH-REF/TST2FISH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/TST2FISH.C -------------------------------------------------------------------------------- /2FSH-REF/TWOFISH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2FSH-REF/TWOFISH.C -------------------------------------------------------------------------------- /2fsh-asm/AES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/AES.H -------------------------------------------------------------------------------- /2fsh-asm/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/DEBUG.H -------------------------------------------------------------------------------- /2fsh-asm/PLATFORM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/PLATFORM.H -------------------------------------------------------------------------------- /2fsh-asm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/README -------------------------------------------------------------------------------- /2fsh-asm/TABLE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/TABLE.H -------------------------------------------------------------------------------- /2fsh-asm/TST2FISH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/TST2FISH.C -------------------------------------------------------------------------------- /2fsh-asm/TWOFISH2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh-asm/TWOFISH2.C -------------------------------------------------------------------------------- /2fsh6805/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh6805/README -------------------------------------------------------------------------------- /2fsh6805/TABLE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh6805/TABLE.INC -------------------------------------------------------------------------------- /2fsh6805/VECTOR.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/2fsh6805/VECTOR.INC -------------------------------------------------------------------------------- /3-WAY/3-way.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/3-WAY/3-way.c -------------------------------------------------------------------------------- /A5/a5-article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/A5/a5-article.txt -------------------------------------------------------------------------------- /A5/a5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/A5/a5.c -------------------------------------------------------------------------------- /A5/gsm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/A5/gsm.txt -------------------------------------------------------------------------------- /ACME/Cipher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Cipher.class -------------------------------------------------------------------------------- /ACME/Cipher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Cipher.java -------------------------------------------------------------------------------- /ACME/Crc16Hash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Crc16Hash.java -------------------------------------------------------------------------------- /ACME/Crc32Hash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Crc32Hash.java -------------------------------------------------------------------------------- /ACME/DesCipher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/DesCipher.java -------------------------------------------------------------------------------- /ACME/Hash.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Hash.class -------------------------------------------------------------------------------- /ACME/Hash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Hash.java -------------------------------------------------------------------------------- /ACME/Rc4Cipher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/Rc4Cipher.java -------------------------------------------------------------------------------- /ACME/ShaHash.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/ShaHash.class -------------------------------------------------------------------------------- /ACME/ShaHash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ACME/ShaHash.java -------------------------------------------------------------------------------- /AKELARRE/Ake32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/AKELARRE/Ake32.c -------------------------------------------------------------------------------- /AKELARRE/Ake32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/AKELARRE/Ake32.h -------------------------------------------------------------------------------- /ASSORTED/BLOCK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/BLOCK.C -------------------------------------------------------------------------------- /ASSORTED/CAESAR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/CAESAR.C -------------------------------------------------------------------------------- /ASSORTED/CAPITAL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/CAPITAL.C -------------------------------------------------------------------------------- /ASSORTED/CHI-SQ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/CHI-SQ.C -------------------------------------------------------------------------------- /ASSORTED/ENTROPY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/ENTROPY.C -------------------------------------------------------------------------------- /ASSORTED/GETOPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/GETOPT.C -------------------------------------------------------------------------------- /ASSORTED/GET_KEY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/GET_KEY.C -------------------------------------------------------------------------------- /ASSORTED/HEADER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/HEADER.H -------------------------------------------------------------------------------- /ASSORTED/KAPPA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/KAPPA.C -------------------------------------------------------------------------------- /ASSORTED/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/MAKEFILE -------------------------------------------------------------------------------- /ASSORTED/N-GRAM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/N-GRAM.C -------------------------------------------------------------------------------- /ASSORTED/ROTOR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/ROTOR.C -------------------------------------------------------------------------------- /ASSORTED/ROTOR.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/ROTOR.CFG -------------------------------------------------------------------------------- /ASSORTED/TEXTSTRP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/TEXTSTRP.C -------------------------------------------------------------------------------- /ASSORTED/THOUSAND.A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/THOUSAND.A -------------------------------------------------------------------------------- /ASSORTED/VIGENERE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ASSORTED/VIGENERE.C -------------------------------------------------------------------------------- /BBC/BBC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BBC/BBC.C -------------------------------------------------------------------------------- /BBC/MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BBC/MAIN.C -------------------------------------------------------------------------------- /BBC/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BBC/MAKEFILE -------------------------------------------------------------------------------- /BFSH-ABE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-ABE/Makefile -------------------------------------------------------------------------------- /BFSH-ABE/blowfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-ABE/blowfish -------------------------------------------------------------------------------- /BFSH-CON/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-CON/blowfish.h -------------------------------------------------------------------------------- /BFSH-KOC/Blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-KOC/Blowfish.c -------------------------------------------------------------------------------- /BFSH-KOC/Blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-KOC/Blowfish.h -------------------------------------------------------------------------------- /BFSH-KOC/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-KOC/Main.c -------------------------------------------------------------------------------- /BFSH-LAC/ERRORS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-LAC/ERRORS.TXT -------------------------------------------------------------------------------- /BFSH-LAC/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-LAC/README.TXT -------------------------------------------------------------------------------- /BFSH-LAC/THANKS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-LAC/THANKS.TXT -------------------------------------------------------------------------------- /BFSH-LAC/TODO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-LAC/TODO.TXT -------------------------------------------------------------------------------- /BFSH-REF/bftest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-REF/bftest.exe -------------------------------------------------------------------------------- /BFSH-REF/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-REF/blowfish.h -------------------------------------------------------------------------------- /BFSH-SCH/BLOWFISH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-SCH/BLOWFISH.C -------------------------------------------------------------------------------- /BFSH-SCH/BLOWFISH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-SCH/BLOWFISH.H -------------------------------------------------------------------------------- /BFSH-UNK/BLOWFISH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BFSH-UNK/BLOWFISH -------------------------------------------------------------------------------- /BIGNUM1/BIGNUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BIGNUM1/BIGNUM -------------------------------------------------------------------------------- /BIGNUM2/BIGNUM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BIGNUM2/BIGNUM.C -------------------------------------------------------------------------------- /BRUTERC4/bruterc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/BRUTERC4/bruterc4.c -------------------------------------------------------------------------------- /CA1-1/CRDFUS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRDFUS.C -------------------------------------------------------------------------------- /CA1-1/CRDFUS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRDFUS.H -------------------------------------------------------------------------------- /CA1-1/CRINIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRINIT.C -------------------------------------------------------------------------------- /CA1-1/CRINIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRINIT.H -------------------------------------------------------------------------------- /CA1-1/CRLINK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRLINK.C -------------------------------------------------------------------------------- /CA1-1/CRLINK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRLINK.H -------------------------------------------------------------------------------- /CA1-1/CRPERM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRPERM.C -------------------------------------------------------------------------------- /CA1-1/CRPERM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRPERM.H -------------------------------------------------------------------------------- /CA1-1/CRTYPE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRTYPE.H -------------------------------------------------------------------------------- /CA1-1/CRUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRUTIL.C -------------------------------------------------------------------------------- /CA1-1/CRYPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/CRYPT.C -------------------------------------------------------------------------------- /CA1-1/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CA1-1/MAKEFILE -------------------------------------------------------------------------------- /CAST-256/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-256/cast.c -------------------------------------------------------------------------------- /CAST-256/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-256/std_defs.h -------------------------------------------------------------------------------- /CAST-BAR/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-BAR/cast.c -------------------------------------------------------------------------------- /CAST-BAR2/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-BAR2/cast.c -------------------------------------------------------------------------------- /CAST-GUT/Cast128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-GUT/Cast128.c -------------------------------------------------------------------------------- /CAST-GUT/Cast128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-GUT/Cast128.h -------------------------------------------------------------------------------- /CAST-GUT/Cast128s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-GUT/Cast128s.h -------------------------------------------------------------------------------- /CAST-GUT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-GUT/readme.txt -------------------------------------------------------------------------------- /CAST-REI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-REI/Makefile -------------------------------------------------------------------------------- /CAST-REI/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-REI/cast.c -------------------------------------------------------------------------------- /CAST-REI/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-REI/cast.h -------------------------------------------------------------------------------- /CAST-REI/casttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CAST-REI/casttest.c -------------------------------------------------------------------------------- /CBW/APPROX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/APPROX.C -------------------------------------------------------------------------------- /CBW/AUTOTRI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/AUTOTRI.C -------------------------------------------------------------------------------- /CBW/AUTOTRI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/AUTOTRI.H -------------------------------------------------------------------------------- /CBW/BANNER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/BANNER.C -------------------------------------------------------------------------------- /CBW/BDRIVER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/BDRIVER.C -------------------------------------------------------------------------------- /CBW/CBLOCKS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/CBLOCKS.C -------------------------------------------------------------------------------- /CBW/CBW.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/CBW.DOC -------------------------------------------------------------------------------- /CBW/CBW.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/CBW.LOG -------------------------------------------------------------------------------- /CBW/CHAR-IO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/CHAR-IO.C -------------------------------------------------------------------------------- /CBW/CIPHER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/CIPHER.C -------------------------------------------------------------------------------- /CBW/CIPHER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/CIPHER.H -------------------------------------------------------------------------------- /CBW/COMMON.WOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/COMMON.WOR -------------------------------------------------------------------------------- /CBW/DBLOCK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/DBLOCK.C -------------------------------------------------------------------------------- /CBW/DBLOCK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/DBLOCK.H -------------------------------------------------------------------------------- /CBW/DBSAUX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/DBSAUX.C -------------------------------------------------------------------------------- /CBW/DLINE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/DLINE.C -------------------------------------------------------------------------------- /CBW/ECLASS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/ECLASS.C -------------------------------------------------------------------------------- /CBW/EDRIVER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/EDRIVER.C -------------------------------------------------------------------------------- /CBW/ENIGMA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/ENIGMA.C -------------------------------------------------------------------------------- /CBW/FOO.CIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/FOO.CIP -------------------------------------------------------------------------------- /CBW/FOO.PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/FOO.PER -------------------------------------------------------------------------------- /CBW/GBLOCK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/GBLOCK.C -------------------------------------------------------------------------------- /CBW/GRAPHICS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/GRAPHICS -------------------------------------------------------------------------------- /CBW/H19.SLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/H19.SLI -------------------------------------------------------------------------------- /CBW/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/INDEX -------------------------------------------------------------------------------- /CBW/KEYLIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/KEYLIB.C -------------------------------------------------------------------------------- /CBW/KNIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/KNIT.C -------------------------------------------------------------------------------- /CBW/LAYOUT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/LAYOUT.H -------------------------------------------------------------------------------- /CBW/LPAIR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/LPAIR.C -------------------------------------------------------------------------------- /CBW/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/MAKEFILE -------------------------------------------------------------------------------- /CBW/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/MANIFEST -------------------------------------------------------------------------------- /CBW/MSS-BIGR.STA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/MSS-BIGR.STA -------------------------------------------------------------------------------- /CBW/MSS-PROB.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/MSS-PROB.TXT -------------------------------------------------------------------------------- /CBW/MSS.STA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/MSS.STA -------------------------------------------------------------------------------- /CBW/MSS.WOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/MSS.WOR -------------------------------------------------------------------------------- /CBW/PARSER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PARSER.C -------------------------------------------------------------------------------- /CBW/PARSER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PARSER.H -------------------------------------------------------------------------------- /CBW/PERM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PERM.C -------------------------------------------------------------------------------- /CBW/PGATE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PGATE.C -------------------------------------------------------------------------------- /CBW/PQUEUE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PQUEUE.C -------------------------------------------------------------------------------- /CBW/PQUEUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PQUEUE.H -------------------------------------------------------------------------------- /CBW/PWORD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/PWORD.C -------------------------------------------------------------------------------- /CBW/READ.ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/READ.ME -------------------------------------------------------------------------------- /CBW/SCREEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/SCREEN.C -------------------------------------------------------------------------------- /CBW/SDRIVER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/SDRIVER.C -------------------------------------------------------------------------------- /CBW/SHORT.WOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/SHORT.WOR -------------------------------------------------------------------------------- /CBW/SPECS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/SPECS.H -------------------------------------------------------------------------------- /CBW/START.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/START.C -------------------------------------------------------------------------------- /CBW/STATS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/STATS.C -------------------------------------------------------------------------------- /CBW/STATS.SLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/STATS.SLI -------------------------------------------------------------------------------- /CBW/TDRIVER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TDRIVER.C -------------------------------------------------------------------------------- /CBW/TERMINAL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TERMINAL.C -------------------------------------------------------------------------------- /CBW/TERMINAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TERMINAL.H -------------------------------------------------------------------------------- /CBW/TEST.CIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST.CIP -------------------------------------------------------------------------------- /CBW/TEST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST.TXT -------------------------------------------------------------------------------- /CBW/TEST1.CIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST1.CIP -------------------------------------------------------------------------------- /CBW/TEST1.PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST1.PER -------------------------------------------------------------------------------- /CBW/TEST1.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST1.TXT -------------------------------------------------------------------------------- /CBW/TEST2.CIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST2.CIP -------------------------------------------------------------------------------- /CBW/TEST2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST2.TXT -------------------------------------------------------------------------------- /CBW/TEST3.CIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST3.CIP -------------------------------------------------------------------------------- /CBW/TEST3.PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST3.PER -------------------------------------------------------------------------------- /CBW/TEST3.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST3.TXT -------------------------------------------------------------------------------- /CBW/TEST3.WOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TEST3.WOR -------------------------------------------------------------------------------- /CBW/TODO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TODO.TXT -------------------------------------------------------------------------------- /CBW/TRIGRAMS.SHO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TRIGRAMS.SHO -------------------------------------------------------------------------------- /CBW/TRIGRAMS.STA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TRIGRAMS.STA -------------------------------------------------------------------------------- /CBW/TRITAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/TRITAB.C -------------------------------------------------------------------------------- /CBW/UNSHAR.HDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/UNSHAR.HDR -------------------------------------------------------------------------------- /CBW/USER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/USER.C -------------------------------------------------------------------------------- /CBW/VT100.SLI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/VT100.SLI -------------------------------------------------------------------------------- /CBW/WEBSTER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/WEBSTER.C -------------------------------------------------------------------------------- /CBW/WINDOW.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/WINDOW.H -------------------------------------------------------------------------------- /CBW/WINDOWLI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/WINDOWLI.C -------------------------------------------------------------------------------- /CBW/ZEECODE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/ZEECODE.C -------------------------------------------------------------------------------- /CBW/ZEECODE.PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CBW/ZEECODE.PER -------------------------------------------------------------------------------- /CHI/chi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CHI/chi.c -------------------------------------------------------------------------------- /CRPT-POL/CRPT-POL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRPT-POL/CRPT-POL -------------------------------------------------------------------------------- /CRYPT1/CRYPT1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPT1/CRYPT1 -------------------------------------------------------------------------------- /CRYPT3-L/CRYPT3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPT3-L/CRYPT3.C -------------------------------------------------------------------------------- /CRYPTBAS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/README -------------------------------------------------------------------------------- /CRYPTBAS/c6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/c6.c -------------------------------------------------------------------------------- /CRYPTBAS/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/crt.c -------------------------------------------------------------------------------- /CRYPTBAS/freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/freq.c -------------------------------------------------------------------------------- /CRYPTBAS/ic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/ic.c -------------------------------------------------------------------------------- /CRYPTBAS/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/info -------------------------------------------------------------------------------- /CRYPTBAS/jac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/jac.c -------------------------------------------------------------------------------- /CRYPTBAS/knap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/knap.c -------------------------------------------------------------------------------- /CRYPTBAS/rprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTBAS/rprime.c -------------------------------------------------------------------------------- /CRYPTON/crypton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTON/crypton.c -------------------------------------------------------------------------------- /CRYPTON/crypton1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTON/crypton1.c -------------------------------------------------------------------------------- /CRYPTON/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/CRYPTON/std_defs.h -------------------------------------------------------------------------------- /Cryptix-1.16/Crypt-Blowfish/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | -------------------------------------------------------------------------------- /Cryptix-1.16/Crypt-DES/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | -------------------------------------------------------------------------------- /Cryptix-1.16/Crypt-IDEA/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | -------------------------------------------------------------------------------- /Cryptix-1.16/Crypt-SHA/typemap: -------------------------------------------------------------------------------- 1 | Crypt::SHA T_PTROBJ 2 | -------------------------------------------------------------------------------- /Cryptix-1.16/Crypt-SHA0/typemap: -------------------------------------------------------------------------------- 1 | Crypt::SHA0 T_PTROBJ 2 | -------------------------------------------------------------------------------- /Cryptix-1.16/Math-BigInteger/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | Math::BigInteger T_PTROBJ 3 | -------------------------------------------------------------------------------- /Cryptix-1.16/Math-PRSG/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | Math::PRSG T_PTROBJ 3 | -------------------------------------------------------------------------------- /Cryptix-1.16/Math-TrulyRandom/truerand.h: -------------------------------------------------------------------------------- 1 | unsigned long truerand(); 2 | -------------------------------------------------------------------------------- /Cryptix-1.16/Math-TrulyRandom/typemap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DEAL/deal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DEAL/deal.c -------------------------------------------------------------------------------- /DEAL/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DEAL/std_defs.h -------------------------------------------------------------------------------- /DES-BARR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/Makefile -------------------------------------------------------------------------------- /DES-BARR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/README -------------------------------------------------------------------------------- /DES-BARR/atob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/atob.c -------------------------------------------------------------------------------- /DES-BARR/btoa.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/btoa.1 -------------------------------------------------------------------------------- /DES-BARR/btoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/btoa.c -------------------------------------------------------------------------------- /DES-BARR/cipher.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/cipher.1 -------------------------------------------------------------------------------- /DES-BARR/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/cipher.c -------------------------------------------------------------------------------- /DES-BARR/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/cipher.h -------------------------------------------------------------------------------- /DES-BARR/cmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/cmail -------------------------------------------------------------------------------- /DES-BARR/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/des.h -------------------------------------------------------------------------------- /DES-BARR/desblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/desblock.c -------------------------------------------------------------------------------- /DES-BARR/descfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/descfb.c -------------------------------------------------------------------------------- /DES-BARR/desdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/desdefs.h -------------------------------------------------------------------------------- /DES-BARR/deskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/deskey.c -------------------------------------------------------------------------------- /DES-BARR/destest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/destest.c -------------------------------------------------------------------------------- /DES-BARR/desvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/desvalid.c -------------------------------------------------------------------------------- /DES-BARR/getkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/getkey.c -------------------------------------------------------------------------------- /DES-BARR/sboxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/sboxp.c -------------------------------------------------------------------------------- /DES-BARR/testcfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/testcfb.c -------------------------------------------------------------------------------- /DES-BARR/testin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/testin -------------------------------------------------------------------------------- /DES-BARR/testin.cfb: -------------------------------------------------------------------------------- 1 | Now is the time for all . 2 | -------------------------------------------------------------------------------- /DES-BARR/testout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BARR/testout -------------------------------------------------------------------------------- /DES-BISH/cdes.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BISH/cdes.1 -------------------------------------------------------------------------------- /DES-BISH/cdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-BISH/cdes.c -------------------------------------------------------------------------------- /DES-KARN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/Makefile -------------------------------------------------------------------------------- /DES-KARN/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/README -------------------------------------------------------------------------------- /DES-KARN/des.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/des.1 -------------------------------------------------------------------------------- /DES-KARN/des.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/des.3 -------------------------------------------------------------------------------- /DES-KARN/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/des.c -------------------------------------------------------------------------------- /DES-KARN/descalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/descalc.c -------------------------------------------------------------------------------- /DES-KARN/descert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/descert.c -------------------------------------------------------------------------------- /DES-KARN/descycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/descycle.c -------------------------------------------------------------------------------- /DES-KARN/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/getopt.c -------------------------------------------------------------------------------- /DES-KARN/getpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/getpass.c -------------------------------------------------------------------------------- /DES-KARN/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/main.c -------------------------------------------------------------------------------- /DES-KARN/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/misc.c -------------------------------------------------------------------------------- /DES-KARN/radlogin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/radlogin.c -------------------------------------------------------------------------------- /DES-KARN/testdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/testdata -------------------------------------------------------------------------------- /DES-KARN/uudecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/uudecode.c -------------------------------------------------------------------------------- /DES-KARN/uuencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KARN/uuencode.c -------------------------------------------------------------------------------- /DES-KOON/DES.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/DES.1 -------------------------------------------------------------------------------- /DES-KOON/DES.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/DES.3 -------------------------------------------------------------------------------- /DES-KOON/DES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/DES.C -------------------------------------------------------------------------------- /DES-KOON/DES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/DES.H -------------------------------------------------------------------------------- /DES-KOON/DES.TES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/DES.TES -------------------------------------------------------------------------------- /DES-KOON/DIAG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/DIAG.C -------------------------------------------------------------------------------- /DES-KOON/FDES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/FDES.C -------------------------------------------------------------------------------- /DES-KOON/FDES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/FDES.H -------------------------------------------------------------------------------- /DES-KOON/GETOPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/GETOPT.C -------------------------------------------------------------------------------- /DES-KOON/HEX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/HEX.C -------------------------------------------------------------------------------- /DES-KOON/INIT_PER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/INIT_PER.C -------------------------------------------------------------------------------- /DES-KOON/INV_PERM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/INV_PERM.C -------------------------------------------------------------------------------- /DES-KOON/KEY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/KEY.C -------------------------------------------------------------------------------- /DES-KOON/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/MAKEFILE -------------------------------------------------------------------------------- /DES-KOON/SBOX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-KOON/SBOX.C -------------------------------------------------------------------------------- /DES-LEVY/fastdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-LEVY/fastdes.c -------------------------------------------------------------------------------- /DES-LEVY/fdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-LEVY/fdemo.c -------------------------------------------------------------------------------- /DES-LEVY/ftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-LEVY/ftest.c -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/HUTLIB: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/LIB/DES-FUN.C: -------------------------------------------------------------------------------- 1 | #define STATIC_INLINE 2 | #include "des-fun.h" 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/LIB/GNUMAKEF: -------------------------------------------------------------------------------- 1 | LIBNAME:= libdes.a 2 | include Makerules 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/LIB/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/LIB/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/PROG/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/PROG/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/TABLES/FP-REV.MAK: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ./mk-fp-rev < IP-1 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/TABLES/FP.MAK: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ./mk-ip < IP-1 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/TABLES/IP-REV.MAK: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ./mk-ip-rev < IP 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/TABLES/IP.MAK: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ./mk-ip < IP 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/TABLES/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/ALODES/VERSION: -------------------------------------------------------------------------------- 1 | Version: 2.0 2 | Date: Oct 5 1992 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/CONFIG/GNUMAKEF: -------------------------------------------------------------------------------- 1 | PROGS:= config 2 | include Makerules 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/CONFIG/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/HUTLIB/GNUMAKEF: -------------------------------------------------------------------------------- 1 | LIBNAME:= libhut.a 2 | include Makerules 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/HUTLIB/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/HUTLIB/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/LIBDIR/AMP.H: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/LIBDIR/DES.H: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/LIBDIR/HUT-INCL.H: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/LIBDIR/LIBAMP.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/LIBDIR/LIBDES.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/LIBDIR/LIBHUT.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/LIB/GNUMAKEF: -------------------------------------------------------------------------------- 1 | LIBNAME:= libamp.a 2 | include Makerules 3 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/LIB/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/LIB/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/PROG/LIBDIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-LOUK/CRYPT-DI/MP/PROG/MAKERULE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DES-MIKK/BASLIB.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MIKK/BASLIB.ASM -------------------------------------------------------------------------------- /DES-MIKK/BASLIB.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MIKK/BASLIB.OBJ -------------------------------------------------------------------------------- /DES-MIKK/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MIKK/README.TXT -------------------------------------------------------------------------------- /DES-MITC/CRUNCH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/CRUNCH.C -------------------------------------------------------------------------------- /DES-MITC/DECRYPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/DECRYPT.C -------------------------------------------------------------------------------- /DES-MITC/DES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/DES.C -------------------------------------------------------------------------------- /DES-MITC/DODEC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/DODEC.BAT -------------------------------------------------------------------------------- /DES-MITC/DOENC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/DOENC.BAT -------------------------------------------------------------------------------- /DES-MITC/ENCRYPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/ENCRYPT.C -------------------------------------------------------------------------------- /DES-MITC/GENSP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/GENSP.C -------------------------------------------------------------------------------- /DES-MITC/GETPASS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/GETPASS.C -------------------------------------------------------------------------------- /DES-MITC/KEYSETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/KEYSETUP.C -------------------------------------------------------------------------------- /DES-MITC/PERMUTE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/PERMUTE.C -------------------------------------------------------------------------------- /DES-MITC/RANDBLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/RANDBLOC.C -------------------------------------------------------------------------------- /DES-MITC/SETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-MITC/SETUP.C -------------------------------------------------------------------------------- /DES-OSTH/DES/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-OSTH/DES/README -------------------------------------------------------------------------------- /DES-OUTE/D3DES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-OUTE/D3DES.C -------------------------------------------------------------------------------- /DES-OUTE/D3DES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-OUTE/D3DES.H -------------------------------------------------------------------------------- /DES-OUTE/D3DES68K.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-OUTE/D3DES68K.C -------------------------------------------------------------------------------- /DES-OUTE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-OUTE/README -------------------------------------------------------------------------------- /DES-YOUN/CBC_CKSU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/CBC_CKSU.C -------------------------------------------------------------------------------- /DES-YOUN/CBC_ENCR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/CBC_ENCR.C -------------------------------------------------------------------------------- /DES-YOUN/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/COPYING -------------------------------------------------------------------------------- /DES-YOUN/DES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DES.C -------------------------------------------------------------------------------- /DES-YOUN/DES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DES.H -------------------------------------------------------------------------------- /DES-YOUN/DES.MAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DES.MAN -------------------------------------------------------------------------------- /DES-YOUN/DES.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DES.PL -------------------------------------------------------------------------------- /DES-YOUN/DESTEST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DESTEST.C -------------------------------------------------------------------------------- /DES-YOUN/DES_LOCA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DES_LOCA.H -------------------------------------------------------------------------------- /DES-YOUN/DOIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DOIP -------------------------------------------------------------------------------- /DES-YOUN/DOPC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DOPC1 -------------------------------------------------------------------------------- /DES-YOUN/DOPC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/DOPC2 -------------------------------------------------------------------------------- /DES-YOUN/ECB_ENCR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/ECB_ENCR.C -------------------------------------------------------------------------------- /DES-YOUN/ENC_READ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/ENC_READ.C -------------------------------------------------------------------------------- /DES-YOUN/ENC_WRIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/ENC_WRIT.C -------------------------------------------------------------------------------- /DES-YOUN/FCRYPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/FCRYPT.C -------------------------------------------------------------------------------- /DES-YOUN/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/FILES -------------------------------------------------------------------------------- /DES-YOUN/IMAKEFIL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/IMAKEFIL -------------------------------------------------------------------------------- /DES-YOUN/INSTALLA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/INSTALLA -------------------------------------------------------------------------------- /DES-YOUN/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/MAKEFILE -------------------------------------------------------------------------------- /DES-YOUN/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/MANIFEST -------------------------------------------------------------------------------- /DES-YOUN/PC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/PC1 -------------------------------------------------------------------------------- /DES-YOUN/PC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/PC2 -------------------------------------------------------------------------------- /DES-YOUN/PCBC_ENC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/PCBC_ENC.C -------------------------------------------------------------------------------- /DES-YOUN/PODD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/PODD.H -------------------------------------------------------------------------------- /DES-YOUN/QUAD_CKS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/QUAD_CKS.C -------------------------------------------------------------------------------- /DES-YOUN/RANDOM_K.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/RANDOM_K.C -------------------------------------------------------------------------------- /DES-YOUN/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/README -------------------------------------------------------------------------------- /DES-YOUN/READ_PAS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/READ_PAS.C -------------------------------------------------------------------------------- /DES-YOUN/RPW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/RPW.C -------------------------------------------------------------------------------- /DES-YOUN/SET_KEY.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/SET_KEY.C -------------------------------------------------------------------------------- /DES-YOUN/SHIFTS.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/SHIFTS.PL -------------------------------------------------------------------------------- /DES-YOUN/SK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/SK.H -------------------------------------------------------------------------------- /DES-YOUN/SP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/SP.H -------------------------------------------------------------------------------- /DES-YOUN/SPEED.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/SPEED.C -------------------------------------------------------------------------------- /DES-YOUN/SPR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/SPR.H -------------------------------------------------------------------------------- /DES-YOUN/STRING_T.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/STRING_T.C -------------------------------------------------------------------------------- /DES-YOUN/TESTDES.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/TESTDES.PL -------------------------------------------------------------------------------- /DES-YOUN/TIMES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/TIMES -------------------------------------------------------------------------------- /DES-YOUN/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/VERSION -------------------------------------------------------------------------------- /DES-YOUN/VMS.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DES-YOUN/VMS.COM -------------------------------------------------------------------------------- /DESSBOX/S5-DES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESSBOX/S5-DES.TXT -------------------------------------------------------------------------------- /DESX/desx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/desx.c -------------------------------------------------------------------------------- /DESX/desx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/desx.h -------------------------------------------------------------------------------- /DESX/desxmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/desxmain.c -------------------------------------------------------------------------------- /DESX/dozip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/dozip -------------------------------------------------------------------------------- /DESX/enxkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/enxkeys.c -------------------------------------------------------------------------------- /DESX/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/getopt.c -------------------------------------------------------------------------------- /DESX/getoptpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/getoptpr.h -------------------------------------------------------------------------------- /DESX/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/makefile -------------------------------------------------------------------------------- /DESX/p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/p.h -------------------------------------------------------------------------------- /DESX/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/readme -------------------------------------------------------------------------------- /DESX/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/test -------------------------------------------------------------------------------- /DESX/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/usage.c -------------------------------------------------------------------------------- /DESX/usagepro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DESX/usagepro.h -------------------------------------------------------------------------------- /DFC/dfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DFC/dfc.c -------------------------------------------------------------------------------- /DFC/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DFC/std_defs.h -------------------------------------------------------------------------------- /DHPRIME/genprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DHPRIME/genprime.c -------------------------------------------------------------------------------- /DIAMOND/31416.ENC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/31416.ENC -------------------------------------------------------------------------------- /DIAMOND/CRC.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/CRC.CPP -------------------------------------------------------------------------------- /DIAMOND/CRC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/CRC.H -------------------------------------------------------------------------------- /DIAMOND/DEF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DEF.H -------------------------------------------------------------------------------- /DIAMOND/DIAMOND2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DIAMOND2.H -------------------------------------------------------------------------------- /DIAMOND/DIAMOND2.PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DIAMOND2.PS -------------------------------------------------------------------------------- /DIAMOND/DLOCK2.ASC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DLOCK2.ASC -------------------------------------------------------------------------------- /DIAMOND/DLOCK2.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DLOCK2.CPP -------------------------------------------------------------------------------- /DIAMOND/DLOCK2.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DLOCK2.EXE -------------------------------------------------------------------------------- /DIAMOND/DLOCK2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/DLOCK2.TXT -------------------------------------------------------------------------------- /DIAMOND/FILE_ID.DIZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/FILE_ID.DIZ -------------------------------------------------------------------------------- /DIAMOND/MD5SUM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/MD5SUM.EXE -------------------------------------------------------------------------------- /DIAMOND/MD5SUM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/MD5SUM.TXT -------------------------------------------------------------------------------- /DIAMOND/MPJ8.ASC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/MPJ8.ASC -------------------------------------------------------------------------------- /DIAMOND/THESIS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/DIAMOND/THESIS.TXT -------------------------------------------------------------------------------- /Delphi/CRYPTO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Delphi/CRYPTO.EXE -------------------------------------------------------------------------------- /Delphi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Delphi/readme.txt -------------------------------------------------------------------------------- /E2/e2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/E2/e2.c -------------------------------------------------------------------------------- /E2/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/E2/std_defs.h -------------------------------------------------------------------------------- /ELIPTIC/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/CHANGES -------------------------------------------------------------------------------- /ELIPTIC/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/NOTES -------------------------------------------------------------------------------- /ELIPTIC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/README -------------------------------------------------------------------------------- /ELIPTIC/bigint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/bigint.c -------------------------------------------------------------------------------- /ELIPTIC/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/bigint.h -------------------------------------------------------------------------------- /ELIPTIC/eliptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/eliptic.c -------------------------------------------------------------------------------- /ELIPTIC/eliptic.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/eliptic.doc -------------------------------------------------------------------------------- /ELIPTIC/eliptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/eliptic.h -------------------------------------------------------------------------------- /ELIPTIC/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/support.c -------------------------------------------------------------------------------- /ELIPTIC/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELIPTIC/support.h -------------------------------------------------------------------------------- /ELLIPTIX/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ELLIPTIX/readme.txt -------------------------------------------------------------------------------- /ENIGMA/ENIGMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ENIGMA/ENIGMA -------------------------------------------------------------------------------- /ESCROW/ESCROW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ESCROW/ESCROW -------------------------------------------------------------------------------- /EXAMPLES/CHINESE-.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/CHINESE-.C -------------------------------------------------------------------------------- /EXAMPLES/COMB-LCG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/COMB-LCG.C -------------------------------------------------------------------------------- /EXAMPLES/COMBINE-.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/COMBINE-.C -------------------------------------------------------------------------------- /EXAMPLES/EEUCLID.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/EEUCLID.C -------------------------------------------------------------------------------- /EXAMPLES/GCD-N.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/GCD-N.C -------------------------------------------------------------------------------- /EXAMPLES/GCD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/GCD.C -------------------------------------------------------------------------------- /EXAMPLES/JACOBI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/JACOBI.C -------------------------------------------------------------------------------- /EXAMPLES/LFSR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/LFSR.C -------------------------------------------------------------------------------- /EXAMPLES/LFSR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/LFSR2.C -------------------------------------------------------------------------------- /EXAMPLES/MODEXP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/MODEXP.C -------------------------------------------------------------------------------- /EXAMPLES/ROT13.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/ROT13.C -------------------------------------------------------------------------------- /EXAMPLES/X0.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/X0.C -------------------------------------------------------------------------------- /EXAMPLES/XOR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/XOR.C -------------------------------------------------------------------------------- /EXAMPLES/XOR2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/EXAMPLES/XOR2.C -------------------------------------------------------------------------------- /FEAL8-WI/feal-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FEAL8-WI/feal-8.c -------------------------------------------------------------------------------- /FEAL8/FEAL8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FEAL8/FEAL8 -------------------------------------------------------------------------------- /FEALNX/FEALNX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FEALNX/FEALNX -------------------------------------------------------------------------------- /FREQ/FREQ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FREQ/FREQ.C -------------------------------------------------------------------------------- /FROG/frog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROG/frog.c -------------------------------------------------------------------------------- /FROG/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROG/std_defs.h -------------------------------------------------------------------------------- /FROGC/AES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/AES.H -------------------------------------------------------------------------------- /FROGC/FROG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/FROG.C -------------------------------------------------------------------------------- /FROGC/FROG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/FROG.H -------------------------------------------------------------------------------- /FROGC/MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/MAIN.C -------------------------------------------------------------------------------- /FROGC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/README -------------------------------------------------------------------------------- /FROGC/TESTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/TESTS.C -------------------------------------------------------------------------------- /FROGC/TESTS.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/TESTS.EXE -------------------------------------------------------------------------------- /FROGC/TESTS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGC/TESTS.H -------------------------------------------------------------------------------- /FROGJAVA/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/FROGJAVA/README -------------------------------------------------------------------------------- /GOST-KOC/GOST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/GOST-KOC/GOST.C -------------------------------------------------------------------------------- /GOST-PLU/GOST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/GOST-PLU/GOST.C -------------------------------------------------------------------------------- /HASHES/HASHES/MD5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HASHES/HASHES/MD5.C -------------------------------------------------------------------------------- /HAVAL-BA/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL-BA/haval.c -------------------------------------------------------------------------------- /HAVAL-BA/haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL-BA/haval.h -------------------------------------------------------------------------------- /HAVAL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/Makefile -------------------------------------------------------------------------------- /HAVAL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/README -------------------------------------------------------------------------------- /HAVAL/cert.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/cert.data -------------------------------------------------------------------------------- /HAVAL/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/haval.c -------------------------------------------------------------------------------- /HAVAL/haval.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/haval.cert -------------------------------------------------------------------------------- /HAVAL/haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/haval.h -------------------------------------------------------------------------------- /HAVAL/haval.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/haval.ps -------------------------------------------------------------------------------- /HAVAL/havalapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/havalapp.h -------------------------------------------------------------------------------- /HAVAL/havaltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/havaltest.c -------------------------------------------------------------------------------- /HAVAL/pi.frac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HAVAL/pi.frac -------------------------------------------------------------------------------- /HILL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/README -------------------------------------------------------------------------------- /HILL/hill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/hill -------------------------------------------------------------------------------- /HILL/hill.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/hill.1 -------------------------------------------------------------------------------- /HILL/hill0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/hill0.c -------------------------------------------------------------------------------- /HILL/kappa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/kappa.c -------------------------------------------------------------------------------- /HILL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/makefile -------------------------------------------------------------------------------- /HILL/table.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HILL/table.i -------------------------------------------------------------------------------- /HPC/hpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HPC/hpc.c -------------------------------------------------------------------------------- /HPC/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/HPC/std_defs.h -------------------------------------------------------------------------------- /I-HAT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/Makefile -------------------------------------------------------------------------------- /I-HAT/chisq.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/chisq.3 -------------------------------------------------------------------------------- /I-HAT/chisq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/chisq.c -------------------------------------------------------------------------------- /I-HAT/chisq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/chisq.h -------------------------------------------------------------------------------- /I-HAT/g_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/g_test.c -------------------------------------------------------------------------------- /I-HAT/gamma.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/gamma.3 -------------------------------------------------------------------------------- /I-HAT/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/gamma.c -------------------------------------------------------------------------------- /I-HAT/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/gamma.h -------------------------------------------------------------------------------- /I-HAT/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/I-HAT/info.c -------------------------------------------------------------------------------- /IDEA-WIL/idea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEA-WIL/idea.c -------------------------------------------------------------------------------- /IDEA68K/IDEA68K/CRYPT2.O: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IDEAPLUS/C_FCT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEAPLUS/C_FCT.H -------------------------------------------------------------------------------- /IDEAPLUS/IDEA.RPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEAPLUS/IDEA.RPT -------------------------------------------------------------------------------- /IDEAPLUS/IDEAT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEAPLUS/IDEAT.C -------------------------------------------------------------------------------- /IDEA_PLU/IDEA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEA_PLU/IDEA.C -------------------------------------------------------------------------------- /IDEA_PLU/IDEA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEA_PLU/IDEA.H -------------------------------------------------------------------------------- /IDEA_PLU/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEA_PLU/README -------------------------------------------------------------------------------- /IDEA_PLU/USUALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/IDEA_PLU/USUALS.H -------------------------------------------------------------------------------- /ISOMORPH/ISOMORPH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ISOMORPH/ISOMORPH -------------------------------------------------------------------------------- /KERBEROS/RFC1510: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/KERBEROS/RFC1510 -------------------------------------------------------------------------------- /KHUFU/KHUFU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/KHUFU/KHUFU.C -------------------------------------------------------------------------------- /KHUFU/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/KHUFU/MAKEFILE -------------------------------------------------------------------------------- /KHUFU/PRSBOX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/KHUFU/PRSBOX.C -------------------------------------------------------------------------------- /KHUFU/PRSBOX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/KHUFU/PRSBOX.H -------------------------------------------------------------------------------- /KS-TEST/KS-TEST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/KS-TEST/KS-TEST.C -------------------------------------------------------------------------------- /LCRNG-T/OKEEFE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG-T/OKEEFE -------------------------------------------------------------------------------- /LCRNG/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/License -------------------------------------------------------------------------------- /LCRNG/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/MANIFEST -------------------------------------------------------------------------------- /LCRNG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/Makefile -------------------------------------------------------------------------------- /LCRNG/Perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/Perl -------------------------------------------------------------------------------- /LCRNG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/README -------------------------------------------------------------------------------- /LCRNG/lotto6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/lotto6 -------------------------------------------------------------------------------- /LCRNG/patchlevel.h: -------------------------------------------------------------------------------- 1 | #define PATCHLEVEL 0 2 | -------------------------------------------------------------------------------- /LCRNG/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LCRNG/random.c -------------------------------------------------------------------------------- /LIBCH/lch025.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LIBCH/lch025.zip -------------------------------------------------------------------------------- /LIBCH/lch025a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LIBCH/lch025a.txt -------------------------------------------------------------------------------- /LIBCH/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LIBCH/readme.txt -------------------------------------------------------------------------------- /LIBDES/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LIBDES/readme.txt -------------------------------------------------------------------------------- /LOKI/LOKI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/LOKI.H -------------------------------------------------------------------------------- /LOKI/LOKI.I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/LOKI.I -------------------------------------------------------------------------------- /LOKI/LOKI89.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/LOKI89.C -------------------------------------------------------------------------------- /LOKI/LOKI91.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/LOKI91.C -------------------------------------------------------------------------------- /LOKI/LOKICERT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/LOKICERT.C -------------------------------------------------------------------------------- /LOKI/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/MAKEFILE -------------------------------------------------------------------------------- /LOKI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/README -------------------------------------------------------------------------------- /LOKI/SINGLE89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/SINGLE89 -------------------------------------------------------------------------------- /LOKI/SINGLE89.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/SINGLE89.LOG -------------------------------------------------------------------------------- /LOKI/SINGLE91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/SINGLE91 -------------------------------------------------------------------------------- /LOKI/SINGLE91.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/SINGLE91.LOG -------------------------------------------------------------------------------- /LOKI/TRIPLE89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/TRIPLE89 -------------------------------------------------------------------------------- /LOKI/TRIPLE91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LOKI/TRIPLE91 -------------------------------------------------------------------------------- /LUCIFER2/TESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/LUCIFER2/TESTS -------------------------------------------------------------------------------- /Lucre/lucre.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Lucre/lucre.tgz -------------------------------------------------------------------------------- /MAGENTA/magenta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MAGENTA/magenta.c -------------------------------------------------------------------------------- /MARS/mars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MARS/mars.c -------------------------------------------------------------------------------- /MARS/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MARS/std_defs.h -------------------------------------------------------------------------------- /MD-RFC/RFC1319: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD-RFC/RFC1319 -------------------------------------------------------------------------------- /MD-RFC/RFC1320: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD-RFC/RFC1320 -------------------------------------------------------------------------------- /MD-RFC/RFC1321: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD-RFC/RFC1321 -------------------------------------------------------------------------------- /MD4-HOLO/abcfile: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /MD4-HOLO/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4-HOLO/makefile -------------------------------------------------------------------------------- /MD4-HOLO/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4-HOLO/md4.c -------------------------------------------------------------------------------- /MD4-HOLO/md4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4-HOLO/md4.exe -------------------------------------------------------------------------------- /MD4-HOLO/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4-HOLO/md4.h -------------------------------------------------------------------------------- /MD4-HOLO/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4-HOLO/readme -------------------------------------------------------------------------------- /MD4-HOLO/rfc1186: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4-HOLO/rfc1186 -------------------------------------------------------------------------------- /MD4/MD4.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4/MD4.H -------------------------------------------------------------------------------- /MD4/MD4C.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD4/MD4C.C -------------------------------------------------------------------------------- /MD5-KARN/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5-KARN/cipher.c -------------------------------------------------------------------------------- /MD5-KARN/kw_msg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5-KARN/kw_msg.1 -------------------------------------------------------------------------------- /MD5-KARN/kw_msg.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5-KARN/kw_msg.2 -------------------------------------------------------------------------------- /MD5-KARN/kw_msg.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5-KARN/kw_msg.3 -------------------------------------------------------------------------------- /MD5-KARN/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5-KARN/readme -------------------------------------------------------------------------------- /MD5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/Makefile -------------------------------------------------------------------------------- /MD5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/README -------------------------------------------------------------------------------- /MD5/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/global.h -------------------------------------------------------------------------------- /MD5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/md5.h -------------------------------------------------------------------------------- /MD5/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/md5c.c -------------------------------------------------------------------------------- /MD5/mddriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/mddriver.c -------------------------------------------------------------------------------- /MD5/rfc1321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MD5/rfc1321.txt -------------------------------------------------------------------------------- /MDC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MDC/md5.c -------------------------------------------------------------------------------- /MDC/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MDC/md5.h -------------------------------------------------------------------------------- /MDC/mdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MDC/mdc.c -------------------------------------------------------------------------------- /MDC/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MDC/mdc.h -------------------------------------------------------------------------------- /MDC/mdc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MDC/mdc.txt -------------------------------------------------------------------------------- /MDC/mdcmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MDC/mdcmain.c -------------------------------------------------------------------------------- /MIMIC/ART.GRM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/ART.GRM -------------------------------------------------------------------------------- /MIMIC/BALL.GRM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/BALL.GRM -------------------------------------------------------------------------------- /MIMIC/GETOPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/GETOPT.C -------------------------------------------------------------------------------- /MIMIC/GETOPT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/GETOPT.H -------------------------------------------------------------------------------- /MIMIC/GLOBAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/GLOBAL.H -------------------------------------------------------------------------------- /MIMIC/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/MAKEFILE -------------------------------------------------------------------------------- /MIMIC/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/MANIFEST -------------------------------------------------------------------------------- /MIMIC/MIMIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/MIMIC -------------------------------------------------------------------------------- /MIMIC/MIMIC.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/MIMIC.1 -------------------------------------------------------------------------------- /MIMIC/MIMIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/MIMIC.C -------------------------------------------------------------------------------- /MIMIC/MIMIC.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/MIMIC.DOC -------------------------------------------------------------------------------- /MIMIC/OUTSPLIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/OUTSPLIT.C -------------------------------------------------------------------------------- /MIMIC/OUTSPLIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/OUTSPLIT.H -------------------------------------------------------------------------------- /MIMIC/PARSER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/PARSER.C -------------------------------------------------------------------------------- /MIMIC/PARSER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/PARSER.H -------------------------------------------------------------------------------- /MIMIC/RANDOM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/RANDOM.C -------------------------------------------------------------------------------- /MIMIC/RANDOM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/RANDOM.H -------------------------------------------------------------------------------- /MIMIC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/README -------------------------------------------------------------------------------- /MIMIC/SAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/SAMPLE -------------------------------------------------------------------------------- /MIMIC/SENDEM-C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/SENDEM-C -------------------------------------------------------------------------------- /MIMIC/TABLE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/TABLE.C -------------------------------------------------------------------------------- /MIMIC/TABLE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/TABLE.H -------------------------------------------------------------------------------- /MIMIC/UTL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/UTL.C -------------------------------------------------------------------------------- /MIMIC/UTL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/UTL.H -------------------------------------------------------------------------------- /MIMIC/WORDS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/WORDS.C -------------------------------------------------------------------------------- /MIMIC/WORDS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MIMIC/WORDS.H -------------------------------------------------------------------------------- /MMB/Mmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MMB/Mmb.c -------------------------------------------------------------------------------- /MPJ2/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MPJ2/crc.cpp -------------------------------------------------------------------------------- /MPJ2/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MPJ2/crc.h -------------------------------------------------------------------------------- /MPJ2/cryptmpj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MPJ2/cryptmpj.c -------------------------------------------------------------------------------- /MPJ2/cryptmpj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MPJ2/cryptmpj.h -------------------------------------------------------------------------------- /MPJ2/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MPJ2/def.h -------------------------------------------------------------------------------- /MPJ2/mpj2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MPJ2/mpj2.txt -------------------------------------------------------------------------------- /MRRCIP/caesar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/caesar.c -------------------------------------------------------------------------------- /MRRCIP/detran.for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/detran.for -------------------------------------------------------------------------------- /MRRCIP/entran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/entran.c -------------------------------------------------------------------------------- /MRRCIP/mrrmkmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/mrrmkmon.c -------------------------------------------------------------------------------- /MRRCIP/p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/p.h -------------------------------------------------------------------------------- /MRRCIP/periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/periodic.c -------------------------------------------------------------------------------- /MRRCIP/phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/phrase.c -------------------------------------------------------------------------------- /MRRCIP/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/readme -------------------------------------------------------------------------------- /MRRCIP/smplsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/smplsub.c -------------------------------------------------------------------------------- /MRRCIP/solvevig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/solvevig.c -------------------------------------------------------------------------------- /MRRCIP/stradalf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/stradalf.c -------------------------------------------------------------------------------- /MRRCIP/straddle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/straddle.c -------------------------------------------------------------------------------- /MRRCIP/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/subst.c -------------------------------------------------------------------------------- /MRRCIP/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/usage.c -------------------------------------------------------------------------------- /MRRCIP/vigkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/MRRCIP/vigkey.c -------------------------------------------------------------------------------- /NETSCAPE/unssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NETSCAPE/unssl.c -------------------------------------------------------------------------------- /NEWDE/NEWDE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDE/NEWDE.C -------------------------------------------------------------------------------- /NEWDE/NEWDE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDE/NEWDE.H -------------------------------------------------------------------------------- /NEWDE/NEWDE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDE/NEWDE.TXT -------------------------------------------------------------------------------- /NEWDES/GETOPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/GETOPT.C -------------------------------------------------------------------------------- /NEWDES/GETOPTPR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/GETOPTPR.H -------------------------------------------------------------------------------- /NEWDES/ND2MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/ND2MAIN.C -------------------------------------------------------------------------------- /NEWDES/NEWDES2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/NEWDES2.C -------------------------------------------------------------------------------- /NEWDES/NEWDES2P.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/NEWDES2P.H -------------------------------------------------------------------------------- /NEWDES/UUCODE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/UUCODE.C -------------------------------------------------------------------------------- /NEWDES/UUCODEPR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NEWDES/UUCODEPR.H -------------------------------------------------------------------------------- /NHASH/NHASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NHASH/NHASH -------------------------------------------------------------------------------- /NSEA/NCRACK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NCRACK.C -------------------------------------------------------------------------------- /NSEA/NCYCLE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NCYCLE.C -------------------------------------------------------------------------------- /NSEA/NGCYCLE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NGCYCLE.C -------------------------------------------------------------------------------- /NSEA/NSEA.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NSEA.ASM -------------------------------------------------------------------------------- /NSEA/NSEA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NSEA.C -------------------------------------------------------------------------------- /NSEA/NSEA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NSEA.H -------------------------------------------------------------------------------- /NSEA/NSEA.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NSEA.OBJ -------------------------------------------------------------------------------- /NSEA/NSEA.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NSEA.TXT -------------------------------------------------------------------------------- /NSEA/NSEAMAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/NSEA/NSEAMAIN.C -------------------------------------------------------------------------------- /PATE/3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/3des.c -------------------------------------------------------------------------------- /PATE/blumblum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/blumblum.c -------------------------------------------------------------------------------- /PATE/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/des.c -------------------------------------------------------------------------------- /PATE/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/dsa.c -------------------------------------------------------------------------------- /PATE/dsa0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/dsa0.txt -------------------------------------------------------------------------------- /PATE/elgamal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/elgamal.c -------------------------------------------------------------------------------- /PATE/esign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/esign.c -------------------------------------------------------------------------------- /PATE/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/ffs.c -------------------------------------------------------------------------------- /PATE/gmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/gmr.c -------------------------------------------------------------------------------- /PATE/gq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/gq.c -------------------------------------------------------------------------------- /PATE/mdc_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/mdc_2.c -------------------------------------------------------------------------------- /PATE/mdc_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/mdc_4.c -------------------------------------------------------------------------------- /PATE/mh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/mh.c -------------------------------------------------------------------------------- /PATE/micali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/micali.c -------------------------------------------------------------------------------- /PATE/mmohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/mmohash.c -------------------------------------------------------------------------------- /PATE/rab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/rab.c -------------------------------------------------------------------------------- /PATE/rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/rabin.c -------------------------------------------------------------------------------- /PATE/rc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/rc5.c -------------------------------------------------------------------------------- /PATE/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/rsa.c -------------------------------------------------------------------------------- /PATE/saferk64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/saferk64.c -------------------------------------------------------------------------------- /PATE/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PATE/sha1.c -------------------------------------------------------------------------------- /PEGWITC/binasc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/binasc.c -------------------------------------------------------------------------------- /PEGWITC/binasc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/binasc.h -------------------------------------------------------------------------------- /PEGWITC/blurb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/blurb.txt -------------------------------------------------------------------------------- /PEGWITC/chall.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/chall.htm -------------------------------------------------------------------------------- /PEGWITC/ecgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/ecgen.cpp -------------------------------------------------------------------------------- /PEGWITC/pegwit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/pegwit.c -------------------------------------------------------------------------------- /PEGWITC/pwjunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/pwjunk.c -------------------------------------------------------------------------------- /PEGWITC/pwkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/pwkey.c -------------------------------------------------------------------------------- /PEGWITC/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/sha1.c -------------------------------------------------------------------------------- /PEGWITC/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/sha1.h -------------------------------------------------------------------------------- /PEGWITC/sqcts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/sqcts.c -------------------------------------------------------------------------------- /PEGWITC/sqcts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/sqcts.h -------------------------------------------------------------------------------- /PEGWITC/sqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/sqgen.c -------------------------------------------------------------------------------- /PEGWITC/square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/square.c -------------------------------------------------------------------------------- /PEGWITC/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/square.h -------------------------------------------------------------------------------- /PEGWITC/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.bat -------------------------------------------------------------------------------- /PEGWITC/test.jnk: -------------------------------------------------------------------------------- 1 | random junk 2 |  -------------------------------------------------------------------------------- /PEGWITC/test.pri: -------------------------------------------------------------------------------- 1 | hello there 2 |  -------------------------------------------------------------------------------- /PEGWITC/test.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.pub -------------------------------------------------------------------------------- /PEGWITC/test.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.sig -------------------------------------------------------------------------------- /PEGWITC/test.tx0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.tx0 -------------------------------------------------------------------------------- /PEGWITC/test.tx1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.tx1 -------------------------------------------------------------------------------- /PEGWITC/test.tx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.tx2 -------------------------------------------------------------------------------- /PEGWITC/test.tx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITC/test.tx5 -------------------------------------------------------------------------------- /PEGWITC/test.txt: -------------------------------------------------------------------------------- 1 | some test data 2 | -------------------------------------------------------------------------------- /PEGWITJ/SHA1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/SHA1.java -------------------------------------------------------------------------------- /PEGWITJ/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.bat -------------------------------------------------------------------------------- /PEGWITJ/test.jnk: -------------------------------------------------------------------------------- 1 | random junk 2 |  -------------------------------------------------------------------------------- /PEGWITJ/test.pri: -------------------------------------------------------------------------------- 1 | hello there 2 |  -------------------------------------------------------------------------------- /PEGWITJ/test.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.pub -------------------------------------------------------------------------------- /PEGWITJ/test.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.sig -------------------------------------------------------------------------------- /PEGWITJ/test.tx0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.tx0 -------------------------------------------------------------------------------- /PEGWITJ/test.tx1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.tx1 -------------------------------------------------------------------------------- /PEGWITJ/test.tx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.tx2 -------------------------------------------------------------------------------- /PEGWITJ/test.tx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PEGWITJ/test.tx5 -------------------------------------------------------------------------------- /PEGWITJ/test.txt: -------------------------------------------------------------------------------- 1 | some test data 2 | -------------------------------------------------------------------------------- /PGP-0.09/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PGP-0.09/CHANGES -------------------------------------------------------------------------------- /PGP-0.09/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PGP-0.09/MANIFEST -------------------------------------------------------------------------------- /PGP-0.09/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PGP-0.09/README -------------------------------------------------------------------------------- /PGP-0.09/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PGP-0.09/TODO -------------------------------------------------------------------------------- /PGP-0.09/examples/enc.asc2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PGP-0.09/examples/keys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PGP-0.09/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PGP-0.09/test.pl -------------------------------------------------------------------------------- /PIKE/PIKE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PIKE/PIKE.C -------------------------------------------------------------------------------- /PKC/PKC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PKC/PKC -------------------------------------------------------------------------------- /PLAYFAIR/PLAYFAIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PLAYFAIR/PLAYFAIR -------------------------------------------------------------------------------- /PPSC/PPSC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PPSC/PPSC -------------------------------------------------------------------------------- /PRNGXOR/FOO: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz0123456789-!@#$%^&*()_+[]{}'"`~;:,.<>/?| 2 | -------------------------------------------------------------------------------- /PRNGXOR/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PRNGXOR/MAKEFILE -------------------------------------------------------------------------------- /PRNGXOR/PRNGXOR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PRNGXOR/PRNGXOR.C -------------------------------------------------------------------------------- /PRNGXOR/RND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PRNGXOR/RND.C -------------------------------------------------------------------------------- /PRNGXOR/TRAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PRNGXOR/TRAN.C -------------------------------------------------------------------------------- /PRV-ANMT/PRV-ANMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/PRV-ANMT/PRV-ANMT -------------------------------------------------------------------------------- /PYTHON1/Crypto/framewks/simple.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | @@IMPLEMENTATION@@ 4 | -------------------------------------------------------------------------------- /RADIX64/COD64.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RADIX64/COD64.C -------------------------------------------------------------------------------- /RADIX64/DEC64.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RADIX64/DEC64.C -------------------------------------------------------------------------------- /RADIX64/ENC64.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RADIX64/ENC64.C -------------------------------------------------------------------------------- /RADIX64/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RADIX64/MAKEFILE -------------------------------------------------------------------------------- /RADIX64/MKTAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RADIX64/MKTAB.C -------------------------------------------------------------------------------- /RAND-BAR/ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-BAR/ZIP -------------------------------------------------------------------------------- /RAND-ELL/GLOBAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/GLOBAL.H -------------------------------------------------------------------------------- /RAND-ELL/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/MAKEFILE -------------------------------------------------------------------------------- /RAND-ELL/MD5.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/MD5.H -------------------------------------------------------------------------------- /RAND-ELL/MD5C.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/MD5C.C -------------------------------------------------------------------------------- /RAND-ELL/RANA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RANA.C -------------------------------------------------------------------------------- /RAND-ELL/RAND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RAND.C -------------------------------------------------------------------------------- /RAND-ELL/RANG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RANG.C -------------------------------------------------------------------------------- /RAND-ELL/RANH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RANH.C -------------------------------------------------------------------------------- /RAND-ELL/RANM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RANM.C -------------------------------------------------------------------------------- /RAND-ELL/RANT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RANT.C -------------------------------------------------------------------------------- /RAND-ELL/RANX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RANX.C -------------------------------------------------------------------------------- /RAND-ELL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/README -------------------------------------------------------------------------------- /RAND-ELL/RND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-ELL/RND.C -------------------------------------------------------------------------------- /RAND-GBA/RANDOM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-GBA/RANDOM -------------------------------------------------------------------------------- /RAND-MB/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-MB/makefile -------------------------------------------------------------------------------- /RAND-MB/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-MB/message -------------------------------------------------------------------------------- /RAND-MB/shs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-MB/shs.c -------------------------------------------------------------------------------- /RAND-VRI/RANDOM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RAND-VRI/RANDOM -------------------------------------------------------------------------------- /RC2-FIX/rc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC2-FIX/rc2.c -------------------------------------------------------------------------------- /RC2-UNK/rc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC2-UNK/rc2.c -------------------------------------------------------------------------------- /RC4-GUT/RC4.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC4-GUT/RC4.ASM -------------------------------------------------------------------------------- /RC4/RC4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC4/RC4.C -------------------------------------------------------------------------------- /RC5-KEL/RC5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC5-KEL/RC5.C -------------------------------------------------------------------------------- /RC5-NIM/RC5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC5-NIM/RC5.C -------------------------------------------------------------------------------- /RC5-RSA/RC5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC5-RSA/RC5 -------------------------------------------------------------------------------- /RC5-WIL/RC5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC5-WIL/RC5.c -------------------------------------------------------------------------------- /RC6/rc6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC6/rc6.c -------------------------------------------------------------------------------- /RC6/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RC6/std_defs.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/README.md -------------------------------------------------------------------------------- /REDOC2/REDOC2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/REDOC2/REDOC2.C -------------------------------------------------------------------------------- /REDOC3/REDOC3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/REDOC3/REDOC3 -------------------------------------------------------------------------------- /RIPE-MD/RIPE-MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RIPE-MD/RIPE-MD -------------------------------------------------------------------------------- /RIPEM3B4/ripem/main/temp.mak: -------------------------------------------------------------------------------- 1 | ripem.lib 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/rsaref/rdemo/scripts/file: -------------------------------------------------------------------------------- 1 | Envelope opened. 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/server/doreg: -------------------------------------------------------------------------------- 1 | rkeyreg -D 5 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/server/dosend2: -------------------------------------------------------------------------------- 1 | #!/bin/csh 2 | while(1) 3 | sendsock 4 | end 5 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/server/doserv: -------------------------------------------------------------------------------- 1 | rkeyserv -D 5 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/test/message: -------------------------------------------------------------------------------- 1 | RIPEM test message decrypted properly. 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/test/out: -------------------------------------------------------------------------------- 1 | Recipient status: 2 | test (on file but not validated) 3 | 4 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/util/prencode.h: -------------------------------------------------------------------------------- 1 | #define PRENCODE_BYTES 48 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/util/ripemd: -------------------------------------------------------------------------------- 1 | ripem -d | more 2 | -------------------------------------------------------------------------------- /RIPEM3B4/ripem/util/ripemr: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ripem -d -h pr | quote -h 3 | -------------------------------------------------------------------------------- /RSA-CPP/RSA.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RSA-CPP/RSA.CPP -------------------------------------------------------------------------------- /RSA-CPP/RSA.HPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RSA-CPP/RSA.HPP -------------------------------------------------------------------------------- /RSA-CPP/VLONG.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RSA-CPP/VLONG.CPP -------------------------------------------------------------------------------- /RSA-CPP/VLONG.HPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RSA-CPP/VLONG.HPP -------------------------------------------------------------------------------- /RSAREF20/RDEMO/SCRIPTS/FILE: -------------------------------------------------------------------------------- 1 | Envelope opened. 2 | -------------------------------------------------------------------------------- /RUBY/DEF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/DEF.H -------------------------------------------------------------------------------- /RUBY/MPJ8.ASC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/MPJ8.ASC -------------------------------------------------------------------------------- /RUBY/RLOCK.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/RLOCK.CPP -------------------------------------------------------------------------------- /RUBY/RLOCK.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/RLOCK.EXE -------------------------------------------------------------------------------- /RUBY/RUBY.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/RUBY.CPP -------------------------------------------------------------------------------- /RUBY/RUBY.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/RUBY.H -------------------------------------------------------------------------------- /RUBY/RUBY_M5.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/RUBY_M5.DOC -------------------------------------------------------------------------------- /RUBY/RUBY_M5.PS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY/RUBY_M5.PS -------------------------------------------------------------------------------- /RUBY_M5/DEF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY_M5/DEF.H -------------------------------------------------------------------------------- /RUBY_M5/MPJ8.ASC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY_M5/MPJ8.ASC -------------------------------------------------------------------------------- /RUBY_M5/RLOCK.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY_M5/RLOCK.CPP -------------------------------------------------------------------------------- /RUBY_M5/RLOCK.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY_M5/RLOCK.EXE -------------------------------------------------------------------------------- /RUBY_M5/RUBY.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY_M5/RUBY.CPP -------------------------------------------------------------------------------- /RUBY_M5/RUBY.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/RUBY_M5/RUBY.H -------------------------------------------------------------------------------- /Ripem160/rmd128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Ripem160/rmd128.c -------------------------------------------------------------------------------- /Ripem160/rmd128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Ripem160/rmd128.h -------------------------------------------------------------------------------- /Ripem160/rmd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Ripem160/rmd160.c -------------------------------------------------------------------------------- /Ripem160/rmd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Ripem160/rmd160.h -------------------------------------------------------------------------------- /S1/s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/S1/s1.c -------------------------------------------------------------------------------- /SAFER+/safer+.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER+/safer+.c -------------------------------------------------------------------------------- /SAFER+/std_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER+/std_defs.h -------------------------------------------------------------------------------- /SAFER-MO/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-MO/README -------------------------------------------------------------------------------- /SAFER-MO/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-MO/check.c -------------------------------------------------------------------------------- /SAFER-MO/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-MO/makefile -------------------------------------------------------------------------------- /SAFER-MO/safer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-MO/safer.1 -------------------------------------------------------------------------------- /SAFER-MO/safer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-MO/safer.c -------------------------------------------------------------------------------- /SAFER-MO/safer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-MO/safer.h -------------------------------------------------------------------------------- /SAFER-RO/SAFER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-RO/SAFER.C -------------------------------------------------------------------------------- /SAFER-WI/safer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAFER-WI/safer.c -------------------------------------------------------------------------------- /SAPPHIRE/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAPPHIRE/MAKEFILE -------------------------------------------------------------------------------- /SAPPHIRE/MPJ8.ASC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SAPPHIRE/MPJ8.ASC -------------------------------------------------------------------------------- /SCRT-FIN/IDEA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SCRT-FIN/IDEA.C -------------------------------------------------------------------------------- /SCRT-FIN/IDEA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SCRT-FIN/IDEA.H -------------------------------------------------------------------------------- /SCRT-FIN/MD5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SCRT-FIN/MD5.C -------------------------------------------------------------------------------- /SCRT-FIN/MD5.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SCRT-FIN/MD5.H -------------------------------------------------------------------------------- /SCRT-FIN/USUALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SCRT-FIN/USUALS.H -------------------------------------------------------------------------------- /SCRT-PEA/SHARING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SCRT-PEA/SHARING -------------------------------------------------------------------------------- /SEAL-ROE/SEAL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SEAL-ROE/SEAL.C -------------------------------------------------------------------------------- /SEAL-WIL/seal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SEAL-WIL/seal.c -------------------------------------------------------------------------------- /SERPENT/serpent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SERPENT/serpent.c -------------------------------------------------------------------------------- /SHA-GUT/SHS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SHA-GUT/SHS -------------------------------------------------------------------------------- /SHA-REI/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SHA-REI/sha1.c -------------------------------------------------------------------------------- /SNEFRU/CORRECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNEFRU/CORRECTS -------------------------------------------------------------------------------- /SNEFRU/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNEFRU/README -------------------------------------------------------------------------------- /SNEFRU/SNEFRU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNEFRU/SNEFRU.C -------------------------------------------------------------------------------- /SNEFRU/TESTSNEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNEFRU/TESTSNEF -------------------------------------------------------------------------------- /SNUFFLE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNUFFLE/Makefile -------------------------------------------------------------------------------- /SNUFFLE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNUFFLE/README -------------------------------------------------------------------------------- /SNUFFLE/snuffle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNUFFLE/snuffle.1 -------------------------------------------------------------------------------- /SNUFFLE/snuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SNUFFLE/snuffle.c -------------------------------------------------------------------------------- /SPEED/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPEED/Makefile -------------------------------------------------------------------------------- /SPEED/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPEED/cert.c -------------------------------------------------------------------------------- /SPEED/certdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPEED/certdata -------------------------------------------------------------------------------- /SPEED/howfast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPEED/howfast.c -------------------------------------------------------------------------------- /SPEED/speedc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPEED/speedc.c -------------------------------------------------------------------------------- /SPEED/speedc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPEED/speedc.h -------------------------------------------------------------------------------- /SPLAY/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPLAY/README -------------------------------------------------------------------------------- /SPLAY/splay.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPLAY/splay.1 -------------------------------------------------------------------------------- /SPLAY/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPLAY/splay.c -------------------------------------------------------------------------------- /SPLAY/splay.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPLAY/splay.i -------------------------------------------------------------------------------- /SPLAY/unsplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SPLAY/unsplay.c -------------------------------------------------------------------------------- /SURF/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SURF/readme.txt -------------------------------------------------------------------------------- /SURF/surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/SURF/surf.c -------------------------------------------------------------------------------- /Sha-rub/SHA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Sha-rub/SHA -------------------------------------------------------------------------------- /TIGER/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER/makefile -------------------------------------------------------------------------------- /TIGER/sboxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER/sboxes.c -------------------------------------------------------------------------------- /TIGER/testtiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER/testtiger.c -------------------------------------------------------------------------------- /TIGER/tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER/tiger.c -------------------------------------------------------------------------------- /TIGER32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER32/makefile -------------------------------------------------------------------------------- /TIGER32/sboxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER32/sboxes.c -------------------------------------------------------------------------------- /TIGER32/tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TIGER32/tiger.c -------------------------------------------------------------------------------- /TRAN-PWD/FOO: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz0123456789-!@#$%^&*()_+[]{}'"`~;:,.<>/?| 2 | -------------------------------------------------------------------------------- /TRAN-PWD/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN-PWD/MAKEFILE -------------------------------------------------------------------------------- /TRAN-PWD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN-PWD/README -------------------------------------------------------------------------------- /TRAN-PWD/RND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN-PWD/RND.C -------------------------------------------------------------------------------- /TRAN-PWD/TRAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN-PWD/TRAN.C -------------------------------------------------------------------------------- /TRAN/FOO: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz0123456789-!@#$%^&*()_+[]{}'"`~;:,.<>/?| 2 | -------------------------------------------------------------------------------- /TRAN/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN/MAKEFILE -------------------------------------------------------------------------------- /TRAN/PRNGXOR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN/PRNGXOR.C -------------------------------------------------------------------------------- /TRAN/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN/README -------------------------------------------------------------------------------- /TRAN/RND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN/RND.C -------------------------------------------------------------------------------- /TRAN/TRAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRAN/TRAN.C -------------------------------------------------------------------------------- /TRNSPOSE/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRNSPOSE/MANIFEST -------------------------------------------------------------------------------- /TRNSPOSE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRNSPOSE/Makefile -------------------------------------------------------------------------------- /TRNSPOSE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRNSPOSE/README -------------------------------------------------------------------------------- /TRNSPOSE/rnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRNSPOSE/rnd.c -------------------------------------------------------------------------------- /TRNSPOSE/tran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRNSPOSE/tran.c -------------------------------------------------------------------------------- /TRPLEDES/DES3.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRPLEDES/DES3.H -------------------------------------------------------------------------------- /TRPLEDES/TECHNOTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TRPLEDES/TECHNOTE -------------------------------------------------------------------------------- /TWOFISH/twofish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/TWOFISH/twofish.c -------------------------------------------------------------------------------- /VIGENERE/VIGENERE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/VIGENERE/VIGENERE -------------------------------------------------------------------------------- /Yarrow/smf/smf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Yarrow/smf/smf.c -------------------------------------------------------------------------------- /Yarrow/smf/smf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Yarrow/smf/smf.h -------------------------------------------------------------------------------- /Yarrow/yarrow.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Yarrow/yarrow.dsw -------------------------------------------------------------------------------- /Yarrow/yarrow.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Yarrow/yarrow.ncb -------------------------------------------------------------------------------- /Yarrow/yarrow.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/Yarrow/yarrow.opt -------------------------------------------------------------------------------- /ZIP/ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/ZIP/ZIP -------------------------------------------------------------------------------- /cryptl21b/CAPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl21b/CAPI.H -------------------------------------------------------------------------------- /cryptl21b/CRYPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl21b/CRYPT.C -------------------------------------------------------------------------------- /cryptl21b/CRYPT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl21b/CRYPT.H -------------------------------------------------------------------------------- /cryptl30/Crypt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/Crypt.rc -------------------------------------------------------------------------------- /cryptl30/TEST.DEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/TEST.DEF -------------------------------------------------------------------------------- /cryptl30/TEST.MAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/TEST.MAK -------------------------------------------------------------------------------- /cryptl30/bn/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/bn/bn.h -------------------------------------------------------------------------------- /cryptl30/capi.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/capi.bas -------------------------------------------------------------------------------- /cryptl30/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/capi.h -------------------------------------------------------------------------------- /cryptl30/cl16.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/cl16.mak -------------------------------------------------------------------------------- /cryptl30/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/crypt.c -------------------------------------------------------------------------------- /cryptl30/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/crypt.h -------------------------------------------------------------------------------- /cryptl30/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/endian.c -------------------------------------------------------------------------------- /cryptl30/lib_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/lib_bf.c -------------------------------------------------------------------------------- /cryptl30/lib_dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/lib_dh.c -------------------------------------------------------------------------------- /cryptl30/lib_kg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/lib_kg.c -------------------------------------------------------------------------------- /cryptl30/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/cryptl30/makefile -------------------------------------------------------------------------------- /crypto32/3way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/3way.cpp -------------------------------------------------------------------------------- /crypto32/3way.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/3way.h -------------------------------------------------------------------------------- /crypto32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/Makefile -------------------------------------------------------------------------------- /crypto32/arc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/arc4.cpp -------------------------------------------------------------------------------- /crypto32/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/arc4.h -------------------------------------------------------------------------------- /crypto32/asn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/asn.cpp -------------------------------------------------------------------------------- /crypto32/asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/asn.h -------------------------------------------------------------------------------- /crypto32/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/base64.h -------------------------------------------------------------------------------- /crypto32/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/bench.h -------------------------------------------------------------------------------- /crypto32/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/cast.cpp -------------------------------------------------------------------------------- /crypto32/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/cast.h -------------------------------------------------------------------------------- /crypto32/cbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/cbc.cpp -------------------------------------------------------------------------------- /crypto32/cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/cbc.h -------------------------------------------------------------------------------- /crypto32/cbcmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/cbcmac.h -------------------------------------------------------------------------------- /crypto32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/config.h -------------------------------------------------------------------------------- /crypto32/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/crc.cpp -------------------------------------------------------------------------------- /crypto32/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/crc.h -------------------------------------------------------------------------------- /crypto32/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/des.cpp -------------------------------------------------------------------------------- /crypto32/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/des.h -------------------------------------------------------------------------------- /crypto32/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dh.cpp -------------------------------------------------------------------------------- /crypto32/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dh.h -------------------------------------------------------------------------------- /crypto32/dh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dh2.cpp -------------------------------------------------------------------------------- /crypto32/dh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dh2.h -------------------------------------------------------------------------------- /crypto32/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dmac.h -------------------------------------------------------------------------------- /crypto32/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dsa.cpp -------------------------------------------------------------------------------- /crypto32/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/dsa.h -------------------------------------------------------------------------------- /crypto32/ec2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/ec2n.cpp -------------------------------------------------------------------------------- /crypto32/ec2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/ec2n.h -------------------------------------------------------------------------------- /crypto32/ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/ecp.cpp -------------------------------------------------------------------------------- /crypto32/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/ecp.h -------------------------------------------------------------------------------- /crypto32/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/files.h -------------------------------------------------------------------------------- /crypto32/gf256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gf256.h -------------------------------------------------------------------------------- /crypto32/gf2_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gf2_32.h -------------------------------------------------------------------------------- /crypto32/gf2n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gf2n.cpp -------------------------------------------------------------------------------- /crypto32/gf2n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gf2n.h -------------------------------------------------------------------------------- /crypto32/gost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gost.cpp -------------------------------------------------------------------------------- /crypto32/gost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gost.h -------------------------------------------------------------------------------- /crypto32/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gzip.cpp -------------------------------------------------------------------------------- /crypto32/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/gzip.h -------------------------------------------------------------------------------- /crypto32/haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/haval.h -------------------------------------------------------------------------------- /crypto32/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/hex.cpp -------------------------------------------------------------------------------- /crypto32/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/hex.h -------------------------------------------------------------------------------- /crypto32/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/hmac.h -------------------------------------------------------------------------------- /crypto32/idea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/idea.cpp -------------------------------------------------------------------------------- /crypto32/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/idea.h -------------------------------------------------------------------------------- /crypto32/luc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/luc.cpp -------------------------------------------------------------------------------- /crypto32/luc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/luc.h -------------------------------------------------------------------------------- /crypto32/mars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/mars.cpp -------------------------------------------------------------------------------- /crypto32/mars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/mars.h -------------------------------------------------------------------------------- /crypto32/md2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/md2.cpp -------------------------------------------------------------------------------- /crypto32/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/md2.h -------------------------------------------------------------------------------- /crypto32/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/md5.cpp -------------------------------------------------------------------------------- /crypto32/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/md5.h -------------------------------------------------------------------------------- /crypto32/md5mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/md5mac.h -------------------------------------------------------------------------------- /crypto32/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/mdc.h -------------------------------------------------------------------------------- /crypto32/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/misc.cpp -------------------------------------------------------------------------------- /crypto32/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/misc.h -------------------------------------------------------------------------------- /crypto32/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/modes.h -------------------------------------------------------------------------------- /crypto32/mqv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/mqv.cpp -------------------------------------------------------------------------------- /crypto32/mqv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/mqv.h -------------------------------------------------------------------------------- /crypto32/nr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/nr.cpp -------------------------------------------------------------------------------- /crypto32/nr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/nr.h -------------------------------------------------------------------------------- /crypto32/oaep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/oaep.cpp -------------------------------------------------------------------------------- /crypto32/oaep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/oaep.h -------------------------------------------------------------------------------- /crypto32/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /crypto32/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/pch.h -------------------------------------------------------------------------------- /crypto32/pssr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/pssr.h -------------------------------------------------------------------------------- /crypto32/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/pubkey.h -------------------------------------------------------------------------------- /crypto32/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/queue.h -------------------------------------------------------------------------------- /crypto32/rabin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rabin.h -------------------------------------------------------------------------------- /crypto32/rc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rc2.cpp -------------------------------------------------------------------------------- /crypto32/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rc2.h -------------------------------------------------------------------------------- /crypto32/rc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rc5.cpp -------------------------------------------------------------------------------- /crypto32/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rc5.h -------------------------------------------------------------------------------- /crypto32/rc6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rc6.cpp -------------------------------------------------------------------------------- /crypto32/rc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rc6.h -------------------------------------------------------------------------------- /crypto32/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/ripemd.h -------------------------------------------------------------------------------- /crypto32/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rng.cpp -------------------------------------------------------------------------------- /crypto32/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rng.h -------------------------------------------------------------------------------- /crypto32/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rsa.cpp -------------------------------------------------------------------------------- /crypto32/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rsa.h -------------------------------------------------------------------------------- /crypto32/rw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rw.cpp -------------------------------------------------------------------------------- /crypto32/rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/rw.h -------------------------------------------------------------------------------- /crypto32/safer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/safer.h -------------------------------------------------------------------------------- /crypto32/seal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/seal.cpp -------------------------------------------------------------------------------- /crypto32/seal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/seal.h -------------------------------------------------------------------------------- /crypto32/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/sha.cpp -------------------------------------------------------------------------------- /crypto32/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/sha.h -------------------------------------------------------------------------------- /crypto32/shark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/shark.h -------------------------------------------------------------------------------- /crypto32/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/square.h -------------------------------------------------------------------------------- /crypto32/tea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/tea.cpp -------------------------------------------------------------------------------- /crypto32/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/tea.h -------------------------------------------------------------------------------- /crypto32/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/test.cpp -------------------------------------------------------------------------------- /crypto32/tiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/tiger.h -------------------------------------------------------------------------------- /crypto32/wake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/wake.cpp -------------------------------------------------------------------------------- /crypto32/wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/wake.h -------------------------------------------------------------------------------- /crypto32/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/words.h -------------------------------------------------------------------------------- /crypto32/xormac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/xormac.h -------------------------------------------------------------------------------- /crypto32/zbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/zbits.h -------------------------------------------------------------------------------- /crypto32/ztrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/crypto32/ztrees.h -------------------------------------------------------------------------------- /logi-dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi-dev/README -------------------------------------------------------------------------------- /logi-dev/doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi-dev/doc.zip -------------------------------------------------------------------------------- /logi-dev/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi-dev/src.zip -------------------------------------------------------------------------------- /logi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi/README -------------------------------------------------------------------------------- /logi/doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi/doc.zip -------------------------------------------------------------------------------- /logi/fingerprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi/fingerprint -------------------------------------------------------------------------------- /logi/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeptechlabs/encryption/HEAD/logi/src.zip --------------------------------------------------------------------------------