├── AntCrypt ├── documentation │ └── 14_03_31_antcrypt_submission.pdf ├── info ├── readme.1st ├── source │ ├── Makefile │ ├── phc.c │ ├── phc.h │ ├── phc_debug.h │ ├── phc_demo.c │ ├── phc_test.c │ └── phc_tv.c └── tv │ └── testvectors.txt ├── Argon ├── Argon.pdf ├── Reference_implementation │ ├── argon-ref.cpp │ ├── extended_test_vectors.log │ └── test_vectors.log └── info ├── Battcrypt ├── battcrypt.pdf ├── code │ ├── LICENSE │ ├── c++ │ │ ├── Makefile │ │ ├── architecture.h │ │ ├── battcrypt.cpp │ │ ├── battcrypt.h │ │ ├── blowfish.cpp │ │ ├── blowfish.h │ │ ├── common.h │ │ ├── inttypes.h │ │ ├── main.cpp │ │ ├── sha512.cpp │ │ ├── sha512.h │ │ └── stdint.h │ └── php │ │ └── blowfish.php ├── info └── test_vectors │ └── test_vectors.txt ├── Catena ├── catena.pdf ├── code │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── THANKS │ └── src │ │ ├── Makefile │ │ ├── blake2 │ │ ├── blake2-config.h │ │ ├── blake2-impl.h │ │ ├── blake2-kat.h │ │ ├── blake2.h │ │ ├── blake2b-load-sse2.h │ │ ├── blake2b-load-sse41.h │ │ ├── blake2b-round.h │ │ ├── blake2b.c │ │ └── blake2bp.c │ │ ├── catena-blake2b.c │ │ ├── catena-sha512.c │ │ ├── catena.c │ │ ├── catena.h │ │ ├── catena_test_vectors.c │ │ ├── hash.h │ │ └── test-catena.c └── info ├── Catfish └── info ├── Centrifuge ├── centrifuge.pdf ├── cfuge-main.c ├── cfuge.c ├── cfuge.h ├── info ├── makefile └── vectors.txt ├── EARWORM ├── COPYING ├── Makefile ├── README ├── aes.c ├── aes.h ├── core-opt.c ├── core-ref.c ├── core.h ├── earworm.pdf ├── info ├── phc.c ├── phc.h ├── sha256.c ├── sha256.h ├── test.c ├── util-opt.h ├── util-ref.h └── util.h ├── Gambit ├── doc │ ├── Gambit.pdf │ ├── Gambit_-_schematic.png │ └── Gambit_-_schematic.svg ├── info └── src │ ├── Gambit.cbp │ ├── gambit.cpp │ ├── gambit.h │ ├── keccak.cpp │ ├── keccak.h │ └── main.cpp ├── Lanarea ├── Cover.md ├── LanareaDF.pdf ├── build.sh ├── info ├── lanarea.c ├── lanarea.h ├── libb2 │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ │ ├── ax_check_aligned_access_required.m4 │ │ ├── ax_check_compile_flag.m4 │ │ ├── ax_ext.m4 │ │ ├── ax_gcc_x86_cpuid.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── blake2-config.h │ │ ├── blake2-dispatch.c │ │ ├── blake2-impl.h │ │ ├── blake2-kat.h │ │ ├── blake2.h │ │ ├── blake2b-load-sse2.h │ │ ├── blake2b-load-sse41.h │ │ ├── blake2b-ref.c │ │ ├── blake2b-round.h │ │ ├── blake2b-test.c │ │ ├── blake2b.c │ │ ├── blake2bp-test.c │ │ ├── blake2bp.c │ │ ├── blake2s-load-sse2.h │ │ ├── blake2s-load-sse41.h │ │ ├── blake2s-load-xop.h │ │ ├── blake2s-ref.c │ │ ├── blake2s-round.h │ │ ├── blake2s-test.c │ │ ├── blake2s.c │ │ ├── blake2sp-test.c │ │ ├── blake2sp.c │ │ └── config.h.in │ └── test-driver └── test.c ├── Lyra2 ├── Intelectual_property.pdf ├── Lyra2ReferenceGuide.pdf ├── info └── src │ ├── Lyra2.c │ ├── Lyra2.h │ ├── Main.c │ ├── Sponge.c │ ├── Sponge.h │ ├── cuda │ ├── Lyra2.cu │ ├── Lyra2.h │ ├── Main.cu │ ├── Sponge.cu │ └── Sponge.h │ ├── makefile │ ├── sse │ ├── Lyra2.c │ ├── Lyra2.h │ ├── Sponge.c │ ├── Sponge.h │ ├── blake2b-load-sse2.h │ ├── blake2b-load-sse41.h │ ├── blake2b-round.h │ └── blake2b.c │ ├── testVectors.txt │ ├── testVectorsNoSSE.txt │ └── testVectorsSSE.txt ├── M3lcrypt ├── code │ ├── Makefile │ ├── Sha2.c │ ├── Sha2.h │ ├── m3lcrypt.c │ ├── m3lcrypt.h │ ├── main.c │ └── testvectors │ │ ├── Makefile │ │ ├── testvectors.c │ │ ├── testvectors.h │ │ └── testvectors.txt ├── cover_m3lcrypt.pdf ├── info ├── ip_statement_m3lcrypt.pdf └── m3lcrypt.pdf ├── MCS_PHS ├── ControlExample.~bat ├── ControlExample1.~bat ├── ControlExample2.~bat ├── ControlExample3.~bat ├── Cover_Sheet.txt ├── DOC │ ├── Initial_analis_MCS_PHS.pdf │ ├── MCSSHA-8__eng_.pdf │ └── MCS_PHS__eng_.pdf ├── README.txt ├── Statement_by_Reference_Implementation_Owner.doc ├── Statement_by_the_Submitter.doc ├── TestHash.~bat ├── TestSpeed1.~bat ├── TestSpeed2.~bat ├── TestSpeed3.~bat ├── bin │ └── README.txt ├── code │ ├── mcs_psw │ │ ├── README.txt │ │ ├── makefile │ │ ├── mcs_psw.cpp │ │ └── mcs_psw.h │ ├── mcssha8 │ │ ├── README.txt │ │ ├── makefile │ │ ├── mcssha8.cpp │ │ ├── mcssha8.h │ │ └── mcssha8_macros.h │ └── test │ │ ├── README.txt │ │ ├── makefile │ │ ├── stdafx.h │ │ └── test.cpp ├── info ├── makefile └── results │ └── TestHash.txt ├── Makwa ├── README.txt ├── c │ ├── Makefile │ ├── deleggen.c │ ├── keygen.c │ ├── makeKAT.c │ ├── makwa.c │ ├── makwa.h │ ├── phc.c │ └── selftest.c ├── info ├── java │ ├── api │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── makwa │ │ │ ├── Makwa.DelegationContext.html │ │ │ ├── Makwa.Output.html │ │ │ ├── Makwa.html │ │ │ ├── MakwaDelegation.html │ │ │ ├── MakwaException.html │ │ │ ├── MakwaPrivateKey.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── tools │ │ │ │ ├── DelegGen.html │ │ │ │ ├── KeyGen.html │ │ │ │ ├── MakeKAT.html │ │ │ │ ├── SelfTest.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── resources │ │ │ ├── background.gif │ │ │ ├── tab.gif │ │ │ ├── titlebar.gif │ │ │ └── titlebar_end.gif │ │ ├── serialized-form.html │ │ └── stylesheet.css │ └── src │ │ └── makwa │ │ ├── Makwa.java │ │ ├── MakwaDelegation.java │ │ ├── MakwaException.java │ │ ├── MakwaIO.java │ │ ├── MakwaPrivateKey.java │ │ └── tools │ │ ├── DelegGen.java │ │ ├── KeyGen.java │ │ ├── MakeKAT.java │ │ └── SelfTest.java ├── kat.txt ├── makwa-cover.pdf └── makwa-spec.pdf ├── OmegaCrypt ├── Makefile ├── chacha-wrapper.c ├── chacha-wrapper.h ├── cubehash-test.c ├── cubehash.c ├── cubehash.h ├── docs │ ├── KAT_ocrypt.txt │ ├── OmegaCrypt.pdf │ ├── mem_heatmap.png │ ├── time_linear_heatmap.png │ ├── time_log_heatmap.png │ └── time_mem_heatmap.png ├── info ├── nettle-chacha │ ├── Makefile.in │ ├── chacha-core-internal.c │ ├── chacha-crypt.c │ ├── chacha-init.c │ ├── chacha.h │ ├── macros.h │ ├── memxor.c │ ├── memxor.h │ ├── nettle-types.h │ └── testsuite │ │ ├── Makefile │ │ ├── build_test.sh │ │ ├── chacha-test.c │ │ ├── test-chacha │ │ └── test-chacha.c ├── ocrypt.c ├── ocrypt.h ├── ocrypt_genKAT.c ├── ocrypt_heatmap.c └── phs.h ├── POMELO ├── Pomelo.pdf ├── Pomelo_testvectors.txt ├── info └── pomelo.c ├── Parallel ├── code │ ├── LICENSE │ ├── c++ │ │ ├── Makefile │ │ ├── architecture.h │ │ ├── common.h │ │ ├── inttypes.h │ │ ├── main.cpp │ │ ├── parallel.cpp │ │ ├── parallel.h │ │ ├── sha512.cpp │ │ ├── sha512.h │ │ └── stdint.h │ └── php │ │ └── parallel.php ├── info ├── parallel.pdf └── test_vectors │ └── test_vectors.txt ├── PolyPassHash ├── cover_sheet.pdf ├── info ├── intellectual_property_statement.pdf ├── no_vulnerabilities_statement.pdf ├── paper.pdf ├── polypasshash-c │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── aclocal.m4 │ ├── build-aux │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── libgfshare.h │ │ ├── libgfshare_tables.h │ │ └── libpolypasshash.h │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── libgfshare.c │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libpolypasshash.c │ │ └── polypasshash.c │ └── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check_libgfshare.c │ │ ├── check_libpolypasshash.c │ │ ├── check_libpph_partialbytes.c │ │ ├── check_libpph_phc.c │ │ └── check_libpph_thresholdless.c └── python-reference-implementation │ ├── build │ └── lib.macosx-10.7-intel-2.7 │ │ ├── old.py │ │ ├── quick.py │ │ └── shamirsecret.py │ ├── fastpolymath.c │ ├── fastpolymath.h │ ├── fastshamirsecret.py │ ├── fastsimplexordatastore.c │ ├── fastsimplexordatastore.h │ ├── fastsimplexordatastore.py │ ├── polypasshash.nopartialverification │ ├── polypasshash.py │ ├── securepasswords │ ├── setup.py │ ├── shamirsecret.py │ ├── testfastshamirsecret.py │ ├── testpolypasshash.py │ ├── testpolypasshash_nopartialverification.py │ ├── testshamirsecret.py │ ├── testtimepph.py │ ├── timepph.old.py │ └── timepph.py ├── Pufferfish ├── info ├── jtr │ ├── pufferfish-optimized.diff │ └── pufferfish-ref.diff ├── pufferfish.pdf ├── readme.txt └── src │ ├── Makefile │ ├── common │ ├── api.c │ ├── api.h │ ├── common.h │ ├── itoa64.c │ └── itoa64.h │ ├── examples │ ├── pfcrypt.c │ └── pfkdf.c │ ├── optimized │ ├── hmac-sha512.c │ ├── pufferfish.c │ ├── pufferfish.h │ ├── sha512.c │ └── sha512.h │ └── reference │ ├── pufferfish.c │ └── pufferfish.h ├── README.md ├── RIG ├── Rig_v1.pdf ├── info ├── source │ ├── BLAKE │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ └── blake2b-ref.c │ ├── main.cpp │ ├── rig.cpp │ └── rig.h └── testv_rig.txt ├── Schvrch ├── info ├── schvrch.h └── schvrchV1.pdf ├── Tortuga ├── Makefile ├── info ├── phs.c ├── phs.h ├── test.c ├── tortuga.c ├── tortuga.h ├── tortuga.pdf ├── turtle.c └── turtle.h ├── TwoCats ├── COPYING ├── README.md ├── TwoCats.pdf ├── blake2-ref │ ├── blake2-impl.h │ ├── blake2-kat.h │ ├── blake2.h │ ├── blake2b-ref.c │ ├── blake2bp-ref.c │ ├── blake2s-ref.c │ ├── blake2sp-ref.c │ ├── genkat.c │ └── makefile ├── blake2-sse │ ├── blake2-config.h │ ├── blake2-impl.h │ ├── blake2-kat.h │ ├── blake2.h │ ├── blake2b-load-sse2.h │ ├── blake2b-load-sse41.h │ ├── blake2b-round.h │ ├── blake2b.c │ ├── blake2bp.c │ ├── blake2s-load-sse2.h │ ├── blake2s-load-sse41.h │ ├── blake2s-load-xop.h │ ├── blake2s-round.h │ ├── blake2s.c │ ├── blake2sp.c │ └── makefile ├── info ├── pebble │ ├── Makefile │ ├── Pebble.dd │ ├── README │ ├── main.c │ ├── pedatabase.c │ └── pedatabase.h ├── skinnycat │ ├── Makefile │ ├── skinnycat.c │ ├── skinnycat.h │ └── test_vectors └── twocats │ ├── Makefile │ ├── main.c │ ├── test_vectors │ ├── twocats-blake2b.c │ ├── twocats-blake2s.c │ ├── twocats-common.c │ ├── twocats-dec.c │ ├── twocats-enc.c │ ├── twocats-internal.h │ ├── twocats-ref.c │ ├── twocats-sha256.c │ ├── twocats-sha512.c │ ├── twocats-test.c │ ├── twocats.c │ └── twocats.h ├── Yarn ├── README.txt ├── info ├── test-vectors.txt ├── yarn.c └── yarn.h ├── Yescrypt ├── extra │ ├── README │ ├── analyze.c │ ├── sim-at-output.txt │ ├── sim-at.c │ ├── sim-normat-output.txt │ ├── sim-normat.c │ ├── sim-tmto-output.txt │ ├── sim-tmto.c │ └── style.latex ├── info ├── yescrypt-0.5 │ ├── Makefile │ ├── PERFORMANCE-SSD │ ├── PERFORMANCE-default │ ├── PERFORMANCE-scaling-down │ ├── PERFORMANCE-scaling-up │ ├── PHC-TEST-OK │ ├── README │ ├── TESTS-OK │ ├── initrom.c │ ├── phc.c │ ├── sha256.c │ ├── sha256.h │ ├── sysendian.h │ ├── tests.c │ ├── userom.c │ ├── yescrypt-best.c │ ├── yescrypt-common.c │ ├── yescrypt-opt.c │ ├── yescrypt-platform.c │ ├── yescrypt-ref.c │ ├── yescrypt-simd.c │ └── yescrypt.h ├── yescrypt-phc.pdf └── yescrypt-phc.rst └── tools └── make_git_repos.sh /AntCrypt/documentation/14_03_31_antcrypt_submission.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/documentation/14_03_31_antcrypt_submission.pdf -------------------------------------------------------------------------------- /AntCrypt/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/info -------------------------------------------------------------------------------- /AntCrypt/readme.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/readme.1st -------------------------------------------------------------------------------- /AntCrypt/source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/Makefile -------------------------------------------------------------------------------- /AntCrypt/source/phc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/phc.c -------------------------------------------------------------------------------- /AntCrypt/source/phc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/phc.h -------------------------------------------------------------------------------- /AntCrypt/source/phc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/phc_debug.h -------------------------------------------------------------------------------- /AntCrypt/source/phc_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/phc_demo.c -------------------------------------------------------------------------------- /AntCrypt/source/phc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/phc_test.c -------------------------------------------------------------------------------- /AntCrypt/source/phc_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/source/phc_tv.c -------------------------------------------------------------------------------- /AntCrypt/tv/testvectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/AntCrypt/tv/testvectors.txt -------------------------------------------------------------------------------- /Argon/Argon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Argon/Argon.pdf -------------------------------------------------------------------------------- /Argon/Reference_implementation/argon-ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Argon/Reference_implementation/argon-ref.cpp -------------------------------------------------------------------------------- /Argon/Reference_implementation/extended_test_vectors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Argon/Reference_implementation/extended_test_vectors.log -------------------------------------------------------------------------------- /Argon/Reference_implementation/test_vectors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Argon/Reference_implementation/test_vectors.log -------------------------------------------------------------------------------- /Argon/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Argon/info -------------------------------------------------------------------------------- /Battcrypt/battcrypt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/battcrypt.pdf -------------------------------------------------------------------------------- /Battcrypt/code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/LICENSE -------------------------------------------------------------------------------- /Battcrypt/code/c++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/Makefile -------------------------------------------------------------------------------- /Battcrypt/code/c++/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/architecture.h -------------------------------------------------------------------------------- /Battcrypt/code/c++/battcrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/battcrypt.cpp -------------------------------------------------------------------------------- /Battcrypt/code/c++/battcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/battcrypt.h -------------------------------------------------------------------------------- /Battcrypt/code/c++/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/blowfish.cpp -------------------------------------------------------------------------------- /Battcrypt/code/c++/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/blowfish.h -------------------------------------------------------------------------------- /Battcrypt/code/c++/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/common.h -------------------------------------------------------------------------------- /Battcrypt/code/c++/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/inttypes.h -------------------------------------------------------------------------------- /Battcrypt/code/c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/main.cpp -------------------------------------------------------------------------------- /Battcrypt/code/c++/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/sha512.cpp -------------------------------------------------------------------------------- /Battcrypt/code/c++/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/sha512.h -------------------------------------------------------------------------------- /Battcrypt/code/c++/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/c++/stdint.h -------------------------------------------------------------------------------- /Battcrypt/code/php/blowfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/code/php/blowfish.php -------------------------------------------------------------------------------- /Battcrypt/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/info -------------------------------------------------------------------------------- /Battcrypt/test_vectors/test_vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Battcrypt/test_vectors/test_vectors.txt -------------------------------------------------------------------------------- /Catena/catena.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/catena.pdf -------------------------------------------------------------------------------- /Catena/code/AUTHORS: -------------------------------------------------------------------------------- 1 | Christian Forler 2 | Steve Thomas -------------------------------------------------------------------------------- /Catena/code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/LICENSE -------------------------------------------------------------------------------- /Catena/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/Makefile -------------------------------------------------------------------------------- /Catena/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/README.md -------------------------------------------------------------------------------- /Catena/code/THANKS: -------------------------------------------------------------------------------- 1 | Steve Thomas (Sc00bz) 2 | Bill Cox (waywardgeek) 3 | Alexander Peslyak (Solar Designer) 4 | -------------------------------------------------------------------------------- /Catena/code/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/Makefile -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2-config.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2-impl.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2-kat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2-kat.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2b-load-sse2.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2b-load-sse41.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2b-round.h -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2b.c -------------------------------------------------------------------------------- /Catena/code/src/blake2/blake2bp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/blake2/blake2bp.c -------------------------------------------------------------------------------- /Catena/code/src/catena-blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/catena-blake2b.c -------------------------------------------------------------------------------- /Catena/code/src/catena-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/catena-sha512.c -------------------------------------------------------------------------------- /Catena/code/src/catena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/catena.c -------------------------------------------------------------------------------- /Catena/code/src/catena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/catena.h -------------------------------------------------------------------------------- /Catena/code/src/catena_test_vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/catena_test_vectors.c -------------------------------------------------------------------------------- /Catena/code/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/hash.h -------------------------------------------------------------------------------- /Catena/code/src/test-catena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/code/src/test-catena.c -------------------------------------------------------------------------------- /Catena/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catena/info -------------------------------------------------------------------------------- /Catfish/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Catfish/info -------------------------------------------------------------------------------- /Centrifuge/centrifuge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/centrifuge.pdf -------------------------------------------------------------------------------- /Centrifuge/cfuge-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/cfuge-main.c -------------------------------------------------------------------------------- /Centrifuge/cfuge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/cfuge.c -------------------------------------------------------------------------------- /Centrifuge/cfuge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/cfuge.h -------------------------------------------------------------------------------- /Centrifuge/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/info -------------------------------------------------------------------------------- /Centrifuge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/makefile -------------------------------------------------------------------------------- /Centrifuge/vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Centrifuge/vectors.txt -------------------------------------------------------------------------------- /EARWORM/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/COPYING -------------------------------------------------------------------------------- /EARWORM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/Makefile -------------------------------------------------------------------------------- /EARWORM/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/README -------------------------------------------------------------------------------- /EARWORM/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/aes.c -------------------------------------------------------------------------------- /EARWORM/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/aes.h -------------------------------------------------------------------------------- /EARWORM/core-opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/core-opt.c -------------------------------------------------------------------------------- /EARWORM/core-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/core-ref.c -------------------------------------------------------------------------------- /EARWORM/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/core.h -------------------------------------------------------------------------------- /EARWORM/earworm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/earworm.pdf -------------------------------------------------------------------------------- /EARWORM/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/info -------------------------------------------------------------------------------- /EARWORM/phc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/phc.c -------------------------------------------------------------------------------- /EARWORM/phc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/phc.h -------------------------------------------------------------------------------- /EARWORM/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/sha256.c -------------------------------------------------------------------------------- /EARWORM/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/sha256.h -------------------------------------------------------------------------------- /EARWORM/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/test.c -------------------------------------------------------------------------------- /EARWORM/util-opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/util-opt.h -------------------------------------------------------------------------------- /EARWORM/util-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/util-ref.h -------------------------------------------------------------------------------- /EARWORM/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/EARWORM/util.h -------------------------------------------------------------------------------- /Gambit/doc/Gambit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/doc/Gambit.pdf -------------------------------------------------------------------------------- /Gambit/doc/Gambit_-_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/doc/Gambit_-_schematic.png -------------------------------------------------------------------------------- /Gambit/doc/Gambit_-_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/doc/Gambit_-_schematic.svg -------------------------------------------------------------------------------- /Gambit/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/info -------------------------------------------------------------------------------- /Gambit/src/Gambit.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/src/Gambit.cbp -------------------------------------------------------------------------------- /Gambit/src/gambit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/src/gambit.cpp -------------------------------------------------------------------------------- /Gambit/src/gambit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/src/gambit.h -------------------------------------------------------------------------------- /Gambit/src/keccak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/src/keccak.cpp -------------------------------------------------------------------------------- /Gambit/src/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/src/keccak.h -------------------------------------------------------------------------------- /Gambit/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Gambit/src/main.cpp -------------------------------------------------------------------------------- /Lanarea/Cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/Cover.md -------------------------------------------------------------------------------- /Lanarea/LanareaDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/LanareaDF.pdf -------------------------------------------------------------------------------- /Lanarea/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/build.sh -------------------------------------------------------------------------------- /Lanarea/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/info -------------------------------------------------------------------------------- /Lanarea/lanarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/lanarea.c -------------------------------------------------------------------------------- /Lanarea/lanarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/lanarea.h -------------------------------------------------------------------------------- /Lanarea/libb2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/COPYING -------------------------------------------------------------------------------- /Lanarea/libb2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/Makefile.am -------------------------------------------------------------------------------- /Lanarea/libb2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/Makefile.in -------------------------------------------------------------------------------- /Lanarea/libb2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/aclocal.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/config.guess -------------------------------------------------------------------------------- /Lanarea/libb2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/config.sub -------------------------------------------------------------------------------- /Lanarea/libb2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/configure -------------------------------------------------------------------------------- /Lanarea/libb2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/configure.ac -------------------------------------------------------------------------------- /Lanarea/libb2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/depcomp -------------------------------------------------------------------------------- /Lanarea/libb2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/install-sh -------------------------------------------------------------------------------- /Lanarea/libb2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/ltmain.sh -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ax_check_aligned_access_required.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ax_check_aligned_access_required.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ax_ext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ax_ext.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ax_gcc_x86_cpuid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ax_gcc_x86_cpuid.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/libtool.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ltoptions.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ltsugar.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/ltversion.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /Lanarea/libb2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/missing -------------------------------------------------------------------------------- /Lanarea/libb2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/Makefile.am -------------------------------------------------------------------------------- /Lanarea/libb2/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/Makefile.in -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2-config.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2-dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2-dispatch.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2-impl.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2-kat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2-kat.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2b-load-sse2.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2b-load-sse41.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2b-ref.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2b-round.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2b-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2b-test.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2b.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2bp-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2bp-test.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2bp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2bp.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s-load-sse2.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s-load-sse41.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s-load-xop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s-load-xop.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s-ref.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s-round.h -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s-test.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2s.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2sp-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2sp-test.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/blake2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/blake2sp.c -------------------------------------------------------------------------------- /Lanarea/libb2/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/src/config.h.in -------------------------------------------------------------------------------- /Lanarea/libb2/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/libb2/test-driver -------------------------------------------------------------------------------- /Lanarea/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lanarea/test.c -------------------------------------------------------------------------------- /Lyra2/Intelectual_property.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/Intelectual_property.pdf -------------------------------------------------------------------------------- /Lyra2/Lyra2ReferenceGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/Lyra2ReferenceGuide.pdf -------------------------------------------------------------------------------- /Lyra2/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/info -------------------------------------------------------------------------------- /Lyra2/src/Lyra2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/Lyra2.c -------------------------------------------------------------------------------- /Lyra2/src/Lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/Lyra2.h -------------------------------------------------------------------------------- /Lyra2/src/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/Main.c -------------------------------------------------------------------------------- /Lyra2/src/Sponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/Sponge.c -------------------------------------------------------------------------------- /Lyra2/src/Sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/Sponge.h -------------------------------------------------------------------------------- /Lyra2/src/cuda/Lyra2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/cuda/Lyra2.cu -------------------------------------------------------------------------------- /Lyra2/src/cuda/Lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/cuda/Lyra2.h -------------------------------------------------------------------------------- /Lyra2/src/cuda/Main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/cuda/Main.cu -------------------------------------------------------------------------------- /Lyra2/src/cuda/Sponge.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/cuda/Sponge.cu -------------------------------------------------------------------------------- /Lyra2/src/cuda/Sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/cuda/Sponge.h -------------------------------------------------------------------------------- /Lyra2/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/makefile -------------------------------------------------------------------------------- /Lyra2/src/sse/Lyra2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/Lyra2.c -------------------------------------------------------------------------------- /Lyra2/src/sse/Lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/Lyra2.h -------------------------------------------------------------------------------- /Lyra2/src/sse/Sponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/Sponge.c -------------------------------------------------------------------------------- /Lyra2/src/sse/Sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/Sponge.h -------------------------------------------------------------------------------- /Lyra2/src/sse/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/blake2b-load-sse2.h -------------------------------------------------------------------------------- /Lyra2/src/sse/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/blake2b-load-sse41.h -------------------------------------------------------------------------------- /Lyra2/src/sse/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/blake2b-round.h -------------------------------------------------------------------------------- /Lyra2/src/sse/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/sse/blake2b.c -------------------------------------------------------------------------------- /Lyra2/src/testVectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/testVectors.txt -------------------------------------------------------------------------------- /Lyra2/src/testVectorsNoSSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/testVectorsNoSSE.txt -------------------------------------------------------------------------------- /Lyra2/src/testVectorsSSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Lyra2/src/testVectorsSSE.txt -------------------------------------------------------------------------------- /M3lcrypt/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/Makefile -------------------------------------------------------------------------------- /M3lcrypt/code/Sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/Sha2.c -------------------------------------------------------------------------------- /M3lcrypt/code/Sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/Sha2.h -------------------------------------------------------------------------------- /M3lcrypt/code/m3lcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/m3lcrypt.c -------------------------------------------------------------------------------- /M3lcrypt/code/m3lcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/m3lcrypt.h -------------------------------------------------------------------------------- /M3lcrypt/code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/main.c -------------------------------------------------------------------------------- /M3lcrypt/code/testvectors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/testvectors/Makefile -------------------------------------------------------------------------------- /M3lcrypt/code/testvectors/testvectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/testvectors/testvectors.c -------------------------------------------------------------------------------- /M3lcrypt/code/testvectors/testvectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/testvectors/testvectors.h -------------------------------------------------------------------------------- /M3lcrypt/code/testvectors/testvectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/code/testvectors/testvectors.txt -------------------------------------------------------------------------------- /M3lcrypt/cover_m3lcrypt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/cover_m3lcrypt.pdf -------------------------------------------------------------------------------- /M3lcrypt/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/info -------------------------------------------------------------------------------- /M3lcrypt/ip_statement_m3lcrypt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/ip_statement_m3lcrypt.pdf -------------------------------------------------------------------------------- /M3lcrypt/m3lcrypt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/M3lcrypt/m3lcrypt.pdf -------------------------------------------------------------------------------- /MCS_PHS/ControlExample.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/ControlExample.~bat -------------------------------------------------------------------------------- /MCS_PHS/ControlExample1.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/ControlExample1.~bat -------------------------------------------------------------------------------- /MCS_PHS/ControlExample2.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/ControlExample2.~bat -------------------------------------------------------------------------------- /MCS_PHS/ControlExample3.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/ControlExample3.~bat -------------------------------------------------------------------------------- /MCS_PHS/Cover_Sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/Cover_Sheet.txt -------------------------------------------------------------------------------- /MCS_PHS/DOC/Initial_analis_MCS_PHS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/DOC/Initial_analis_MCS_PHS.pdf -------------------------------------------------------------------------------- /MCS_PHS/DOC/MCSSHA-8__eng_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/DOC/MCSSHA-8__eng_.pdf -------------------------------------------------------------------------------- /MCS_PHS/DOC/MCS_PHS__eng_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/DOC/MCS_PHS__eng_.pdf -------------------------------------------------------------------------------- /MCS_PHS/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/README.txt -------------------------------------------------------------------------------- /MCS_PHS/Statement_by_Reference_Implementation_Owner.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/Statement_by_Reference_Implementation_Owner.doc -------------------------------------------------------------------------------- /MCS_PHS/Statement_by_the_Submitter.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/Statement_by_the_Submitter.doc -------------------------------------------------------------------------------- /MCS_PHS/TestHash.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/TestHash.~bat -------------------------------------------------------------------------------- /MCS_PHS/TestSpeed1.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/TestSpeed1.~bat -------------------------------------------------------------------------------- /MCS_PHS/TestSpeed2.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/TestSpeed2.~bat -------------------------------------------------------------------------------- /MCS_PHS/TestSpeed3.~bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/TestSpeed3.~bat -------------------------------------------------------------------------------- /MCS_PHS/bin/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/bin/README.txt -------------------------------------------------------------------------------- /MCS_PHS/code/mcs_psw/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcs_psw/README.txt -------------------------------------------------------------------------------- /MCS_PHS/code/mcs_psw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcs_psw/makefile -------------------------------------------------------------------------------- /MCS_PHS/code/mcs_psw/mcs_psw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcs_psw/mcs_psw.cpp -------------------------------------------------------------------------------- /MCS_PHS/code/mcs_psw/mcs_psw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcs_psw/mcs_psw.h -------------------------------------------------------------------------------- /MCS_PHS/code/mcssha8/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcssha8/README.txt -------------------------------------------------------------------------------- /MCS_PHS/code/mcssha8/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcssha8/makefile -------------------------------------------------------------------------------- /MCS_PHS/code/mcssha8/mcssha8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcssha8/mcssha8.cpp -------------------------------------------------------------------------------- /MCS_PHS/code/mcssha8/mcssha8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcssha8/mcssha8.h -------------------------------------------------------------------------------- /MCS_PHS/code/mcssha8/mcssha8_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/mcssha8/mcssha8_macros.h -------------------------------------------------------------------------------- /MCS_PHS/code/test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/test/README.txt -------------------------------------------------------------------------------- /MCS_PHS/code/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/test/makefile -------------------------------------------------------------------------------- /MCS_PHS/code/test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/test/stdafx.h -------------------------------------------------------------------------------- /MCS_PHS/code/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/code/test/test.cpp -------------------------------------------------------------------------------- /MCS_PHS/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/info -------------------------------------------------------------------------------- /MCS_PHS/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/makefile -------------------------------------------------------------------------------- /MCS_PHS/results/TestHash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/MCS_PHS/results/TestHash.txt -------------------------------------------------------------------------------- /Makwa/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/README.txt -------------------------------------------------------------------------------- /Makwa/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/Makefile -------------------------------------------------------------------------------- /Makwa/c/deleggen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/deleggen.c -------------------------------------------------------------------------------- /Makwa/c/keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/keygen.c -------------------------------------------------------------------------------- /Makwa/c/makeKAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/makeKAT.c -------------------------------------------------------------------------------- /Makwa/c/makwa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/makwa.c -------------------------------------------------------------------------------- /Makwa/c/makwa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/makwa.h -------------------------------------------------------------------------------- /Makwa/c/phc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/phc.c -------------------------------------------------------------------------------- /Makwa/c/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/c/selftest.c -------------------------------------------------------------------------------- /Makwa/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/info -------------------------------------------------------------------------------- /Makwa/java/api/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/allclasses-frame.html -------------------------------------------------------------------------------- /Makwa/java/api/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/allclasses-noframe.html -------------------------------------------------------------------------------- /Makwa/java/api/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/constant-values.html -------------------------------------------------------------------------------- /Makwa/java/api/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/deprecated-list.html -------------------------------------------------------------------------------- /Makwa/java/api/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/help-doc.html -------------------------------------------------------------------------------- /Makwa/java/api/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/index-all.html -------------------------------------------------------------------------------- /Makwa/java/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/index.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/Makwa.DelegationContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/Makwa.DelegationContext.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/Makwa.Output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/Makwa.Output.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/Makwa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/Makwa.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/MakwaDelegation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/MakwaDelegation.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/MakwaException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/MakwaException.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/MakwaPrivateKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/MakwaPrivateKey.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/package-frame.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/package-summary.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/package-tree.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/DelegGen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/DelegGen.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/KeyGen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/KeyGen.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/MakeKAT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/MakeKAT.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/SelfTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/SelfTest.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/package-frame.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/package-summary.html -------------------------------------------------------------------------------- /Makwa/java/api/makwa/tools/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/makwa/tools/package-tree.html -------------------------------------------------------------------------------- /Makwa/java/api/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/overview-frame.html -------------------------------------------------------------------------------- /Makwa/java/api/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/overview-summary.html -------------------------------------------------------------------------------- /Makwa/java/api/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/overview-tree.html -------------------------------------------------------------------------------- /Makwa/java/api/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/package-list -------------------------------------------------------------------------------- /Makwa/java/api/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/resources/background.gif -------------------------------------------------------------------------------- /Makwa/java/api/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/resources/tab.gif -------------------------------------------------------------------------------- /Makwa/java/api/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/resources/titlebar.gif -------------------------------------------------------------------------------- /Makwa/java/api/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/resources/titlebar_end.gif -------------------------------------------------------------------------------- /Makwa/java/api/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/serialized-form.html -------------------------------------------------------------------------------- /Makwa/java/api/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/api/stylesheet.css -------------------------------------------------------------------------------- /Makwa/java/src/makwa/Makwa.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/Makwa.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/MakwaDelegation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/MakwaDelegation.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/MakwaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/MakwaException.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/MakwaIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/MakwaIO.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/MakwaPrivateKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/MakwaPrivateKey.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/tools/DelegGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/tools/DelegGen.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/tools/KeyGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/tools/KeyGen.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/tools/MakeKAT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/tools/MakeKAT.java -------------------------------------------------------------------------------- /Makwa/java/src/makwa/tools/SelfTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/java/src/makwa/tools/SelfTest.java -------------------------------------------------------------------------------- /Makwa/kat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/kat.txt -------------------------------------------------------------------------------- /Makwa/makwa-cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/makwa-cover.pdf -------------------------------------------------------------------------------- /Makwa/makwa-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Makwa/makwa-spec.pdf -------------------------------------------------------------------------------- /OmegaCrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/Makefile -------------------------------------------------------------------------------- /OmegaCrypt/chacha-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/chacha-wrapper.c -------------------------------------------------------------------------------- /OmegaCrypt/chacha-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/chacha-wrapper.h -------------------------------------------------------------------------------- /OmegaCrypt/cubehash-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/cubehash-test.c -------------------------------------------------------------------------------- /OmegaCrypt/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/cubehash.c -------------------------------------------------------------------------------- /OmegaCrypt/cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/cubehash.h -------------------------------------------------------------------------------- /OmegaCrypt/docs/KAT_ocrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/docs/KAT_ocrypt.txt -------------------------------------------------------------------------------- /OmegaCrypt/docs/OmegaCrypt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/docs/OmegaCrypt.pdf -------------------------------------------------------------------------------- /OmegaCrypt/docs/mem_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/docs/mem_heatmap.png -------------------------------------------------------------------------------- /OmegaCrypt/docs/time_linear_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/docs/time_linear_heatmap.png -------------------------------------------------------------------------------- /OmegaCrypt/docs/time_log_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/docs/time_log_heatmap.png -------------------------------------------------------------------------------- /OmegaCrypt/docs/time_mem_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/docs/time_mem_heatmap.png -------------------------------------------------------------------------------- /OmegaCrypt/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/info -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/Makefile.in -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/chacha-core-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/chacha-core-internal.c -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/chacha-crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/chacha-crypt.c -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/chacha-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/chacha-init.c -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/chacha.h -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/macros.h -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/memxor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/memxor.c -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/memxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/memxor.h -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/nettle-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/nettle-types.h -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/testsuite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/testsuite/Makefile -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/testsuite/build_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/testsuite/build_test.sh -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/testsuite/chacha-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/testsuite/chacha-test.c -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/testsuite/test-chacha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/testsuite/test-chacha -------------------------------------------------------------------------------- /OmegaCrypt/nettle-chacha/testsuite/test-chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/nettle-chacha/testsuite/test-chacha.c -------------------------------------------------------------------------------- /OmegaCrypt/ocrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/ocrypt.c -------------------------------------------------------------------------------- /OmegaCrypt/ocrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/ocrypt.h -------------------------------------------------------------------------------- /OmegaCrypt/ocrypt_genKAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/ocrypt_genKAT.c -------------------------------------------------------------------------------- /OmegaCrypt/ocrypt_heatmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/ocrypt_heatmap.c -------------------------------------------------------------------------------- /OmegaCrypt/phs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/OmegaCrypt/phs.h -------------------------------------------------------------------------------- /POMELO/Pomelo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/POMELO/Pomelo.pdf -------------------------------------------------------------------------------- /POMELO/Pomelo_testvectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/POMELO/Pomelo_testvectors.txt -------------------------------------------------------------------------------- /POMELO/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/POMELO/info -------------------------------------------------------------------------------- /POMELO/pomelo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/POMELO/pomelo.c -------------------------------------------------------------------------------- /Parallel/code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/LICENSE -------------------------------------------------------------------------------- /Parallel/code/c++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/Makefile -------------------------------------------------------------------------------- /Parallel/code/c++/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/architecture.h -------------------------------------------------------------------------------- /Parallel/code/c++/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/common.h -------------------------------------------------------------------------------- /Parallel/code/c++/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/inttypes.h -------------------------------------------------------------------------------- /Parallel/code/c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/main.cpp -------------------------------------------------------------------------------- /Parallel/code/c++/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/parallel.cpp -------------------------------------------------------------------------------- /Parallel/code/c++/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/parallel.h -------------------------------------------------------------------------------- /Parallel/code/c++/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/sha512.cpp -------------------------------------------------------------------------------- /Parallel/code/c++/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/sha512.h -------------------------------------------------------------------------------- /Parallel/code/c++/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/c++/stdint.h -------------------------------------------------------------------------------- /Parallel/code/php/parallel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/code/php/parallel.php -------------------------------------------------------------------------------- /Parallel/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/info -------------------------------------------------------------------------------- /Parallel/parallel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/parallel.pdf -------------------------------------------------------------------------------- /Parallel/test_vectors/test_vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Parallel/test_vectors/test_vectors.txt -------------------------------------------------------------------------------- /PolyPassHash/cover_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/cover_sheet.pdf -------------------------------------------------------------------------------- /PolyPassHash/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/info -------------------------------------------------------------------------------- /PolyPassHash/intellectual_property_statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/intellectual_property_statement.pdf -------------------------------------------------------------------------------- /PolyPassHash/no_vulnerabilities_statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/no_vulnerabilities_statement.pdf -------------------------------------------------------------------------------- /PolyPassHash/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/paper.pdf -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/Makefile.am -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/Makefile.in -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/README.md -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/aclocal.m4 -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/compile -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/config.guess -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/config.sub -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/depcomp -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/install-sh -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/ltmain.sh -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/build-aux/missing -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/config.h.in -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/configure -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/configure.ac -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/include/libgfshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/include/libgfshare.h -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/include/libgfshare_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/include/libgfshare_tables.h -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/include/libpolypasshash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/include/libpolypasshash.h -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/lib/Makefile.am -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/lib/Makefile.in -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/lib/libgfshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/lib/libgfshare.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/src/Makefile.am -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/src/Makefile.in -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/src/libpolypasshash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/src/libpolypasshash.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/src/polypasshash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/src/polypasshash.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/Makefile.am -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/Makefile.in -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/check_libgfshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/check_libgfshare.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/check_libpolypasshash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/check_libpolypasshash.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/check_libpph_partialbytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/check_libpph_partialbytes.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/check_libpph_phc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/check_libpph_phc.c -------------------------------------------------------------------------------- /PolyPassHash/polypasshash-c/tests/check_libpph_thresholdless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/polypasshash-c/tests/check_libpph_thresholdless.c -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/build/lib.macosx-10.7-intel-2.7/old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/build/lib.macosx-10.7-intel-2.7/old.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/build/lib.macosx-10.7-intel-2.7/quick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/build/lib.macosx-10.7-intel-2.7/quick.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/build/lib.macosx-10.7-intel-2.7/shamirsecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/build/lib.macosx-10.7-intel-2.7/shamirsecret.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/fastpolymath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/fastpolymath.c -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/fastpolymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/fastpolymath.h -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/fastshamirsecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/fastshamirsecret.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/fastsimplexordatastore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/fastsimplexordatastore.c -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/fastsimplexordatastore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/fastsimplexordatastore.h -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/fastsimplexordatastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/fastsimplexordatastore.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/polypasshash.nopartialverification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/polypasshash.nopartialverification -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/polypasshash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/polypasshash.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/securepasswords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/securepasswords -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/setup.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/shamirsecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/shamirsecret.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/testfastshamirsecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/testfastshamirsecret.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/testpolypasshash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/testpolypasshash.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/testpolypasshash_nopartialverification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/testpolypasshash_nopartialverification.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/testshamirsecret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/testshamirsecret.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/testtimepph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/testtimepph.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/timepph.old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/timepph.old.py -------------------------------------------------------------------------------- /PolyPassHash/python-reference-implementation/timepph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/PolyPassHash/python-reference-implementation/timepph.py -------------------------------------------------------------------------------- /Pufferfish/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/info -------------------------------------------------------------------------------- /Pufferfish/jtr/pufferfish-optimized.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/jtr/pufferfish-optimized.diff -------------------------------------------------------------------------------- /Pufferfish/jtr/pufferfish-ref.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/jtr/pufferfish-ref.diff -------------------------------------------------------------------------------- /Pufferfish/pufferfish.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/pufferfish.pdf -------------------------------------------------------------------------------- /Pufferfish/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/readme.txt -------------------------------------------------------------------------------- /Pufferfish/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/Makefile -------------------------------------------------------------------------------- /Pufferfish/src/common/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/common/api.c -------------------------------------------------------------------------------- /Pufferfish/src/common/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/common/api.h -------------------------------------------------------------------------------- /Pufferfish/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/common/common.h -------------------------------------------------------------------------------- /Pufferfish/src/common/itoa64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/common/itoa64.c -------------------------------------------------------------------------------- /Pufferfish/src/common/itoa64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/common/itoa64.h -------------------------------------------------------------------------------- /Pufferfish/src/examples/pfcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/examples/pfcrypt.c -------------------------------------------------------------------------------- /Pufferfish/src/examples/pfkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/examples/pfkdf.c -------------------------------------------------------------------------------- /Pufferfish/src/optimized/hmac-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/optimized/hmac-sha512.c -------------------------------------------------------------------------------- /Pufferfish/src/optimized/pufferfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/optimized/pufferfish.c -------------------------------------------------------------------------------- /Pufferfish/src/optimized/pufferfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/optimized/pufferfish.h -------------------------------------------------------------------------------- /Pufferfish/src/optimized/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/optimized/sha512.c -------------------------------------------------------------------------------- /Pufferfish/src/optimized/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/optimized/sha512.h -------------------------------------------------------------------------------- /Pufferfish/src/reference/pufferfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/reference/pufferfish.c -------------------------------------------------------------------------------- /Pufferfish/src/reference/pufferfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Pufferfish/src/reference/pufferfish.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/README.md -------------------------------------------------------------------------------- /RIG/Rig_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/Rig_v1.pdf -------------------------------------------------------------------------------- /RIG/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/info -------------------------------------------------------------------------------- /RIG/source/BLAKE/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/source/BLAKE/blake2-impl.h -------------------------------------------------------------------------------- /RIG/source/BLAKE/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/source/BLAKE/blake2.h -------------------------------------------------------------------------------- /RIG/source/BLAKE/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/source/BLAKE/blake2b-ref.c -------------------------------------------------------------------------------- /RIG/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/source/main.cpp -------------------------------------------------------------------------------- /RIG/source/rig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/source/rig.cpp -------------------------------------------------------------------------------- /RIG/source/rig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/source/rig.h -------------------------------------------------------------------------------- /RIG/testv_rig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/RIG/testv_rig.txt -------------------------------------------------------------------------------- /Schvrch/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Schvrch/info -------------------------------------------------------------------------------- /Schvrch/schvrch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Schvrch/schvrch.h -------------------------------------------------------------------------------- /Schvrch/schvrchV1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Schvrch/schvrchV1.pdf -------------------------------------------------------------------------------- /Tortuga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/Makefile -------------------------------------------------------------------------------- /Tortuga/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/info -------------------------------------------------------------------------------- /Tortuga/phs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/phs.c -------------------------------------------------------------------------------- /Tortuga/phs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/phs.h -------------------------------------------------------------------------------- /Tortuga/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/test.c -------------------------------------------------------------------------------- /Tortuga/tortuga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/tortuga.c -------------------------------------------------------------------------------- /Tortuga/tortuga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/tortuga.h -------------------------------------------------------------------------------- /Tortuga/tortuga.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/tortuga.pdf -------------------------------------------------------------------------------- /Tortuga/turtle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/turtle.c -------------------------------------------------------------------------------- /Tortuga/turtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Tortuga/turtle.h -------------------------------------------------------------------------------- /TwoCats/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/COPYING -------------------------------------------------------------------------------- /TwoCats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/README.md -------------------------------------------------------------------------------- /TwoCats/TwoCats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/TwoCats.pdf -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2-impl.h -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2-kat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2-kat.h -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2.h -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2b-ref.c -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2bp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2bp-ref.c -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2s-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2s-ref.c -------------------------------------------------------------------------------- /TwoCats/blake2-ref/blake2sp-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/blake2sp-ref.c -------------------------------------------------------------------------------- /TwoCats/blake2-ref/genkat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/genkat.c -------------------------------------------------------------------------------- /TwoCats/blake2-ref/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-ref/makefile -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2-config.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2-impl.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2-kat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2-kat.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2b-load-sse2.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2b-load-sse41.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2b-round.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2b.c -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2bp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2bp.c -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2s-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2s-load-sse2.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2s-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2s-load-sse41.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2s-load-xop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2s-load-xop.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2s-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2s-round.h -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2s.c -------------------------------------------------------------------------------- /TwoCats/blake2-sse/blake2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/blake2sp.c -------------------------------------------------------------------------------- /TwoCats/blake2-sse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/blake2-sse/makefile -------------------------------------------------------------------------------- /TwoCats/info: -------------------------------------------------------------------------------- 1 | TwoCats 2 | Bill Cox, waywardgeek@gmail.com 3 | -------------------------------------------------------------------------------- /TwoCats/pebble/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/pebble/Makefile -------------------------------------------------------------------------------- /TwoCats/pebble/Pebble.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/pebble/Pebble.dd -------------------------------------------------------------------------------- /TwoCats/pebble/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/pebble/README -------------------------------------------------------------------------------- /TwoCats/pebble/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/pebble/main.c -------------------------------------------------------------------------------- /TwoCats/pebble/pedatabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/pebble/pedatabase.c -------------------------------------------------------------------------------- /TwoCats/pebble/pedatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/pebble/pedatabase.h -------------------------------------------------------------------------------- /TwoCats/skinnycat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/skinnycat/Makefile -------------------------------------------------------------------------------- /TwoCats/skinnycat/skinnycat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/skinnycat/skinnycat.c -------------------------------------------------------------------------------- /TwoCats/skinnycat/skinnycat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/skinnycat/skinnycat.h -------------------------------------------------------------------------------- /TwoCats/skinnycat/test_vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/skinnycat/test_vectors -------------------------------------------------------------------------------- /TwoCats/twocats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/Makefile -------------------------------------------------------------------------------- /TwoCats/twocats/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/main.c -------------------------------------------------------------------------------- /TwoCats/twocats/test_vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/test_vectors -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-blake2b.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-blake2s.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-common.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-dec.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-enc.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-internal.h -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-ref.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-sha256.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-sha512.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats-test.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats.c -------------------------------------------------------------------------------- /TwoCats/twocats/twocats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/TwoCats/twocats/twocats.h -------------------------------------------------------------------------------- /Yarn/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yarn/README.txt -------------------------------------------------------------------------------- /Yarn/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yarn/info -------------------------------------------------------------------------------- /Yarn/test-vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yarn/test-vectors.txt -------------------------------------------------------------------------------- /Yarn/yarn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yarn/yarn.c -------------------------------------------------------------------------------- /Yarn/yarn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yarn/yarn.h -------------------------------------------------------------------------------- /Yescrypt/extra/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/README -------------------------------------------------------------------------------- /Yescrypt/extra/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/analyze.c -------------------------------------------------------------------------------- /Yescrypt/extra/sim-at-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/sim-at-output.txt -------------------------------------------------------------------------------- /Yescrypt/extra/sim-at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/sim-at.c -------------------------------------------------------------------------------- /Yescrypt/extra/sim-normat-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/sim-normat-output.txt -------------------------------------------------------------------------------- /Yescrypt/extra/sim-normat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/sim-normat.c -------------------------------------------------------------------------------- /Yescrypt/extra/sim-tmto-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/sim-tmto-output.txt -------------------------------------------------------------------------------- /Yescrypt/extra/sim-tmto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/sim-tmto.c -------------------------------------------------------------------------------- /Yescrypt/extra/style.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/extra/style.latex -------------------------------------------------------------------------------- /Yescrypt/info: -------------------------------------------------------------------------------- 1 | Alexander Peslyak 2 | solar@openwall.com 3 | -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/Makefile -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/PERFORMANCE-SSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/PERFORMANCE-SSD -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/PERFORMANCE-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/PERFORMANCE-default -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/PERFORMANCE-scaling-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/PERFORMANCE-scaling-down -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/PERFORMANCE-scaling-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/PERFORMANCE-scaling-up -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/PHC-TEST-OK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/PHC-TEST-OK -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/README -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/TESTS-OK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/TESTS-OK -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/initrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/initrom.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/phc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/phc.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/sha256.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/sha256.h -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/sysendian.h -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/tests.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/userom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/userom.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt-best.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt-best.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt-common.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt-opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt-opt.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt-platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt-platform.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt-ref.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt-simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt-simd.c -------------------------------------------------------------------------------- /Yescrypt/yescrypt-0.5/yescrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-0.5/yescrypt.h -------------------------------------------------------------------------------- /Yescrypt/yescrypt-phc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-phc.pdf -------------------------------------------------------------------------------- /Yescrypt/yescrypt-phc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/Yescrypt/yescrypt-phc.rst -------------------------------------------------------------------------------- /tools/make_git_repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsdphk/PHC/HEAD/tools/make_git_repos.sh --------------------------------------------------------------------------------