├── .github └── workflows │ ├── amd64-linux-main-build-instructions.yml.0 │ ├── amd64-linux-main-proof.yml.0 │ ├── amd64-linux-main-safety.yml.0 │ ├── amd64-linux-main.yml.0 │ └── amd64-linux.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── LICENSES ├── Apache-2.0.txt └── CC0-1.0.txt ├── README.md ├── bench ├── .gitignore ├── Makefile ├── Makefile.partial_implementations └── common │ ├── alignedcalloc.c │ ├── benchrandombytes.c │ ├── config.h │ ├── cpucycles.c │ ├── crypto_hash.c │ ├── crypto_kem.c │ ├── crypto_onetimeauth.c │ ├── crypto_scalarmult.c │ ├── crypto_secretbox.c │ ├── crypto_sign.c │ ├── crypto_stream.c │ ├── crypto_xof.c │ ├── increment.c │ ├── min.c │ ├── namespace.h │ ├── printbench.c │ └── stability.c ├── default.nix ├── doc └── api.md ├── ext ├── .gitignore └── randombytes │ ├── Makefile │ ├── randombytes.c │ └── randombytes.h ├── flake.lock ├── flake.nix ├── oldsrc-should-delete ├── .gitignore ├── Makefile ├── Makefile.checksafety ├── Makefile.checksct ├── Makefile.common ├── Makefile.functions ├── common │ ├── EcFlags.mk │ ├── keccak │ │ ├── common │ │ │ ├── fips202_4x_DIRTY.jinc │ │ │ ├── fips202_DIRTY.jinc │ │ │ ├── fips202_params.jinc │ │ │ └── fips202_ref_DIRTY.jinc │ │ └── keccak1600 │ │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── keccak1600.jinc │ │ │ ├── keccak1600_nomsf.jinc │ │ │ ├── keccakf1600.jinc │ │ │ ├── keccakf1600_4x.jinc │ │ │ └── keccakf1600_nomsf.jinc │ │ │ ├── bmi1 │ │ │ ├── Makefile │ │ │ ├── keccak1600.jinc │ │ │ └── keccakf1600.jinc │ │ │ ├── ref │ │ │ ├── Makefile │ │ │ ├── keccak1600.jinc │ │ │ ├── keccakf1600.jinc │ │ │ └── keccakf1600_v0.jinc │ │ │ ├── ref1 │ │ │ ├── Makefile │ │ │ ├── keccak1600.jinc │ │ │ └── keccakf1600.jinc │ │ │ └── spec │ │ │ ├── keccak1600.jinc │ │ │ ├── keccakf1600.jinc │ │ │ └── keccakf1600_globals.jinc │ └── tofromstack.jinc ├── crypto_hash │ ├── EcFlags.mk │ ├── sha256 │ │ ├── META.yml │ │ └── amd64 │ │ │ └── ref │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ └── api.h │ │ │ ├── sha256.jinc │ │ │ └── sha256_globals.jinc │ ├── sha3-224 │ │ ├── META.yml │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-224.jinc │ │ │ ├── bmi1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-224.jinc │ │ │ ├── ref │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-224.jinc │ │ │ └── ref1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ └── api.h │ │ │ └── sha3-224.jinc │ ├── sha3-256 │ │ ├── META.yml │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-256.jinc │ │ │ ├── bmi1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-256.jinc │ │ │ ├── ref │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-256.jinc │ │ │ └── ref1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ └── api.h │ │ │ └── sha3-256.jinc │ ├── sha3-384 │ │ ├── META.yml │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-384.jinc │ │ │ ├── bmi1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-384.jinc │ │ │ ├── ref │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-384.jinc │ │ │ └── ref1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ └── api.h │ │ │ └── sha3-384.jinc │ ├── sha3-512 │ │ ├── META.yml │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-512.jinc │ │ │ ├── bmi1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-512.jinc │ │ │ ├── ref │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── sha3-512.jinc │ │ │ └── ref1 │ │ │ ├── Makefile │ │ │ ├── hash.jazz │ │ │ ├── include │ │ │ └── api.h │ │ │ └── sha3-512.jinc │ └── sha512 │ │ ├── META.yml │ │ └── amd64 │ │ └── ref │ │ ├── Makefile │ │ ├── hash.jazz │ │ ├── include │ │ └── api.h │ │ ├── sha512.jinc │ │ └── sha512_globals.jinc ├── crypto_kem │ ├── EcFlags.mk │ ├── kyber │ │ ├── common │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ ├── consts.jinc │ │ │ │ ├── poly.jinc │ │ │ │ ├── polyvec.jinc │ │ │ │ ├── reduce.jinc │ │ │ │ ├── shuffle.jinc │ │ │ │ └── verify.jinc │ │ │ │ ├── kem.jinc │ │ │ │ └── ref │ │ │ │ ├── gen_matrix.jinc │ │ │ │ ├── poly.jinc │ │ │ │ ├── polyvec.jinc │ │ │ │ ├── reduce.jinc │ │ │ │ ├── verify.jinc │ │ │ │ └── zetas.jinc │ │ ├── kyber512 │ │ │ ├── META.yml │ │ │ ├── amd64 │ │ │ │ ├── avx2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── gen_matrix.jinc │ │ │ │ │ ├── include │ │ │ │ │ │ └── api.h │ │ │ │ │ ├── indcpa.jinc │ │ │ │ │ └── kem.jazz │ │ │ │ └── ref │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ │ ├── indcpa.jinc │ │ │ │ │ └── kem.jazz │ │ │ ├── common │ │ │ │ └── params.jinc │ │ │ └── hacspec │ │ │ │ └── empty │ │ └── kyber768 │ │ │ ├── META.yml │ │ │ ├── amd64 │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── gen_matrix.jinc │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ ├── indcpa.jinc │ │ │ │ └── kem.jazz │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ ├── indcpa.jinc │ │ │ │ ├── kem.jazz │ │ │ │ ├── kem.jinc │ │ │ │ ├── params.jinc │ │ │ │ ├── poly.jinc │ │ │ │ ├── polyvec.jinc │ │ │ │ └── verify.jinc │ │ │ ├── common │ │ │ └── params.jinc │ │ │ └── hacspec │ │ │ └── empty │ ├── mlkem │ │ └── mlkem768 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── consts.jinc │ │ │ ├── fips202.jinc │ │ │ ├── fips202_4x.jinc │ │ │ ├── fips202_common.jinc │ │ │ ├── gen_matrix.jinc │ │ │ ├── gen_matrix_globals.jinc │ │ │ ├── include │ │ │ │ └── api.h │ │ │ ├── indcpa.jinc │ │ │ ├── keccak │ │ │ │ ├── keccakf1600.jinc │ │ │ │ ├── keccakf1600_4x_avx2_compact.jinc │ │ │ │ ├── keccakf1600_avx2.jinc │ │ │ │ └── keccakf1600_generic.jinc │ │ │ ├── kem.jazz │ │ │ ├── kem.jinc │ │ │ ├── params.jinc │ │ │ ├── poly.jinc │ │ │ ├── polyvec.jinc │ │ │ ├── reduce.jinc │ │ │ ├── shuffle.jinc │ │ │ └── verify.jinc │ │ │ └── ref │ │ │ ├── Makefile │ │ │ ├── fips202.jinc │ │ │ ├── gen_matrix.jinc │ │ │ ├── include │ │ │ └── api.h │ │ │ ├── indcpa.jinc │ │ │ ├── kem.jazz │ │ │ ├── kem.jinc │ │ │ ├── params.jinc │ │ │ ├── poly.jinc │ │ │ ├── polyvec.jinc │ │ │ ├── reduce.jinc │ │ │ ├── verify.jinc │ │ │ └── zetas.jinc │ └── xwing │ │ ├── META.yml │ │ └── amd64 │ │ ├── avx2 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ └── kem.jazz │ │ └── ref │ │ ├── Makefile │ │ ├── include │ │ └── api.h │ │ ├── kem.jazz │ │ ├── kem.jinc │ │ ├── params.jinc │ │ ├── scalarmult.jinc │ │ └── sha3.jinc ├── crypto_onetimeauth │ ├── EcFlags.mk │ └── poly1305 │ │ ├── META.yml │ │ └── amd64 │ │ ├── avx │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── onetimeauth.jazz │ │ └── poly1305.jinc │ │ ├── avx2 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── onetimeauth.jazz │ │ └── poly1305.jinc │ │ └── ref │ │ ├── Makefile │ │ ├── include │ │ └── api.h │ │ ├── onetimeauth.jazz │ │ └── poly1305.jinc ├── crypto_scalarmult │ ├── EcFlags.mk │ └── curve25519 │ │ ├── META.yml │ │ └── amd64 │ │ ├── mulx │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ └── scalarmult.jazz │ │ ├── ref4 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ └── scalarmult.jazz │ │ └── ref5 │ │ ├── Makefile │ │ ├── include │ │ └── api.h │ │ └── scalarmult.jazz ├── crypto_secretbox │ ├── EcFlags.mk │ └── xsalsa20poly1305 │ │ ├── META.yml │ │ └── amd64 │ │ ├── avx │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── poly1305_kD.jinc │ │ ├── salsa20_32D.jinc │ │ ├── secretbox.jazz │ │ ├── xsalsa20_32D.jinc │ │ └── xsalsa20poly1305.jinc │ │ ├── avx2 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── poly1305_kD.jinc │ │ ├── salsa20_32D.jinc │ │ ├── secretbox.jazz │ │ ├── xsalsa20_32D.jinc │ │ └── xsalsa20poly1305.jinc │ │ └── ref │ │ ├── Makefile │ │ ├── include │ │ └── api.h │ │ ├── poly1305_kD.jinc │ │ ├── salsa20_32D.jinc │ │ ├── secretbox.jazz │ │ ├── xsalsa20_32D.jinc │ │ └── xsalsa20poly1305.jinc ├── crypto_sign │ ├── EcFlags.mk │ ├── dilithium │ │ ├── common │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ ├── expandA.jinc │ │ │ │ ├── expandA_end.jinc │ │ │ │ ├── expandMask.jinc │ │ │ │ ├── expandMask_end.jinc │ │ │ │ ├── keccak1600.jinc │ │ │ │ ├── keccakf1600.jinc │ │ │ │ ├── ntt.jinc │ │ │ │ ├── poly.jinc │ │ │ │ ├── poly_end.jinc │ │ │ │ ├── polyvec_end.jinc │ │ │ │ └── sign_end.jinc │ │ │ │ ├── expandA_end.jinc │ │ │ │ ├── expandMask.jinc │ │ │ │ ├── expandMask_end.jinc │ │ │ │ ├── expandS.jinc │ │ │ │ ├── expandS_end.jinc │ │ │ │ ├── fips202.jinc │ │ │ │ ├── hashing_end.jinc │ │ │ │ ├── keygen_end.jinc │ │ │ │ ├── montgomery.jinc │ │ │ │ ├── ntt.jinc │ │ │ │ ├── packing.jinc │ │ │ │ ├── packing_end.jinc │ │ │ │ ├── params.jinc │ │ │ │ ├── params_end.jinc │ │ │ │ ├── poly.jinc │ │ │ │ ├── poly_end.jinc │ │ │ │ ├── polyvec_end.jinc │ │ │ │ ├── rounding.jinc │ │ │ │ ├── rounding_end.jinc │ │ │ │ ├── sign.jinc │ │ │ │ ├── sign_end.jinc │ │ │ │ ├── twiddle_factors.jinc │ │ │ │ └── verify_end.jinc │ │ ├── dilithium2 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── common.jinc │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ ├── packing.jinc │ │ │ │ ├── params.jinc │ │ │ │ └── sign.jazz │ │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── common.jinc │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ ├── packing.jinc │ │ │ │ ├── params.jinc │ │ │ │ └── sign.jazz │ │ ├── dilithium3 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── common.jinc │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ ├── packing.jinc │ │ │ │ ├── params.jinc │ │ │ │ └── sign.jazz │ │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── common.jinc │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ ├── packing.jinc │ │ │ │ ├── params.jinc │ │ │ │ └── sign.jazz │ │ └── dilithium5 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── common.jinc │ │ │ ├── include │ │ │ │ └── api.h │ │ │ ├── packing.jinc │ │ │ ├── params.jinc │ │ │ └── sign.jazz │ │ │ └── ref │ │ │ ├── Makefile │ │ │ ├── common.jinc │ │ │ ├── include │ │ │ └── api.h │ │ │ ├── packing.jinc │ │ │ ├── params.jinc │ │ │ └── sign.jazz │ └── falcon │ │ └── falcon512 │ │ ├── META.yml │ │ ├── amd64 │ │ └── avx2 │ │ │ ├── .partial │ │ │ ├── Makefile │ │ │ ├── NTT.jinc │ │ │ ├── NTT_params.jinc │ │ │ ├── butterfly.jinc │ │ │ ├── include │ │ │ ├── .gitkeep │ │ │ └── api.h │ │ │ ├── polymul.jinc │ │ │ ├── sign.jazz │ │ │ ├── sign.jinc │ │ │ ├── table.jinc │ │ │ ├── test.jazz │ │ │ ├── vec.jinc │ │ │ └── verify.jinc │ │ └── common │ │ ├── amd64 │ │ ├── common.jinc │ │ ├── encode_decode.jinc │ │ └── shake256.jinc │ │ └── params.jinc ├── crypto_stream │ ├── EcFlags.mk │ ├── chacha │ │ ├── chacha12 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ ├── chacha20-ietf │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── Makefile │ │ │ │ ├── _chacha.jinc │ │ │ │ ├── chacha_entry_h.jinc │ │ │ │ ├── chacha_entry_v.jinc │ │ │ │ ├── chacha_state.jinc │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── _chacha.jinc │ │ │ │ ├── chacha_entry_h.jinc │ │ │ │ ├── chacha_entry_v.jinc │ │ │ │ ├── chacha_state.jinc │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── chacha_entry.jinc │ │ │ │ ├── chacha_state.jinc │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ ├── chacha20 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ └── common │ │ │ └── amd64 │ │ │ ├── avx │ │ │ ├── _chacha.jinc │ │ │ ├── chacha.jinc │ │ │ ├── chacha_core_h.jinc │ │ │ ├── chacha_core_v.jinc │ │ │ ├── chacha_entry_h.jinc │ │ │ ├── chacha_entry_v.jinc │ │ │ ├── chacha_globals.jinc │ │ │ ├── chacha_h.jinc │ │ │ ├── chacha_state_h.jinc │ │ │ ├── chacha_state_v.jinc │ │ │ ├── chacha_store_h.jinc │ │ │ ├── chacha_store_v.jinc │ │ │ └── chacha_v.jinc │ │ │ ├── avx2 │ │ │ ├── _chacha.jinc │ │ │ ├── chacha.jinc │ │ │ ├── chacha_core_h.jinc │ │ │ ├── chacha_core_v.jinc │ │ │ ├── chacha_entry_h.jinc │ │ │ ├── chacha_entry_v.jinc │ │ │ ├── chacha_globals.jinc │ │ │ ├── chacha_h.jinc │ │ │ ├── chacha_state_h.jinc │ │ │ ├── chacha_state_v.jinc │ │ │ ├── chacha_store_h.jinc │ │ │ ├── chacha_store_v.jinc │ │ │ └── chacha_v.jinc │ │ │ └── ref │ │ │ ├── chacha.jinc │ │ │ ├── chacha_core.jinc │ │ │ ├── chacha_entry.jinc │ │ │ ├── chacha_state.jinc │ │ │ └── chacha_store.jinc │ ├── salsa20 │ │ ├── common │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── _salsa20.jinc │ │ │ │ ├── salsa20.jinc │ │ │ │ ├── salsa20_core_v.jinc │ │ │ │ ├── salsa20_globals.jinc │ │ │ │ ├── salsa20_state_v.jinc │ │ │ │ └── salsa20_v.jinc │ │ │ │ ├── avx2 │ │ │ │ ├── _salsa20.jinc │ │ │ │ ├── salsa20.jinc │ │ │ │ ├── salsa20_core_v.jinc │ │ │ │ ├── salsa20_globals.jinc │ │ │ │ ├── salsa20_state_v.jinc │ │ │ │ └── salsa20_v.jinc │ │ │ │ └── ref │ │ │ │ ├── salsa20.jinc │ │ │ │ ├── salsa20_core.jinc │ │ │ │ └── salsa20_state.jinc │ │ ├── salsa20 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ ├── avx2 │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ │ │ └── ref │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ └── api.h │ │ │ │ └── stream.jazz │ │ └── salsa2012 │ │ │ ├── META.yml │ │ │ └── amd64 │ │ │ ├── avx │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── stream.jazz │ │ │ ├── avx2 │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── api.h │ │ │ └── stream.jazz │ │ │ └── ref │ │ │ ├── Makefile │ │ │ ├── include │ │ │ └── api.h │ │ │ └── stream.jazz │ └── xsalsa20 │ │ ├── META.yml │ │ └── amd64 │ │ ├── avx │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── stream.jazz │ │ └── xsalsa20.jinc │ │ ├── avx2 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── stream.jazz │ │ └── xsalsa20.jinc │ │ └── ref │ │ ├── Makefile │ │ ├── hsalsa20.jinc │ │ ├── include │ │ └── api.h │ │ ├── stream.jazz │ │ └── xsalsa20.jinc ├── crypto_verify │ ├── 16 │ │ └── amd64 │ │ │ └── common │ │ │ ├── Makefile │ │ │ └── crypto_verify_16.jinc │ └── EcFlags.mk └── crypto_xof │ ├── EcFlags.mk │ ├── shake128 │ ├── META.yml │ └── amd64 │ │ ├── avx2 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── shake128.jinc │ │ ├── shake128_4x.jinc │ │ └── xof.jazz │ │ ├── bmi1 │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── shake128.jinc │ │ └── xof.jazz │ │ ├── ref │ │ ├── Makefile │ │ ├── include │ │ │ └── api.h │ │ ├── shake128.jinc │ │ └── xof.jazz │ │ └── ref1 │ │ ├── Makefile │ │ ├── include │ │ └── api.h │ │ ├── shake128.jinc │ │ └── xof.jazz │ └── shake256 │ ├── META.yml │ └── amd64 │ ├── avx2 │ ├── Makefile │ ├── include │ │ └── api.h │ ├── shake256.jinc │ ├── shake256_4x.jinc │ └── xof.jazz │ ├── bmi1 │ ├── Makefile │ ├── include │ │ └── api.h │ ├── shake256.jinc │ └── xof.jazz │ ├── ref │ ├── Makefile │ ├── include │ │ └── api.h │ ├── shake256.jinc │ └── xof.jazz │ ├── ref1 │ ├── Makefile │ ├── include │ │ └── api.h │ ├── shake256.jinc │ └── xof.jazz │ └── spec │ ├── Makefile │ ├── include │ └── api.h │ ├── shake256.jinc │ └── xof.jazz ├── proof ├── .gitignore ├── Makefile ├── common │ └── keccak │ │ └── keccak1600 │ │ └── amd64 │ │ ├── avx2 │ │ └── .gitkeep │ │ ├── bmi1 │ │ └── .gitkeep │ │ ├── ref │ │ └── .gitkeep │ │ └── ref1 │ │ └── .gitkeep ├── crypto-specs ├── crypto_hash │ ├── sha256 │ │ └── amd64 │ │ │ └── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ ├── sha3-224 │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ ├── bmi1 │ │ │ └── .gitkeep │ │ │ ├── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ └── ref1 │ │ │ └── .gitkeep │ ├── sha3-256 │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ ├── bmi1 │ │ │ └── .gitkeep │ │ │ ├── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ └── ref1 │ │ │ └── .gitkeep │ ├── sha3-384 │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ ├── bmi1 │ │ │ └── .gitkeep │ │ │ ├── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ └── ref1 │ │ │ └── .gitkeep │ ├── sha3-512 │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ ├── bmi1 │ │ │ └── .gitkeep │ │ │ ├── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ └── ref1 │ │ │ └── .gitkeep │ └── sha512 │ │ └── amd64 │ │ └── ref │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec ├── crypto_kem │ ├── kyber │ │ ├── kyber512 │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ └── .gitkeep │ │ │ │ └── ref │ │ │ │ └── .gitkeep │ │ └── kyber768 │ │ │ └── amd64 │ │ │ ├── avx2 │ │ │ └── .gitkeep │ │ │ └── ref │ │ │ └── .gitkeep │ └── xwing │ │ └── amd64 │ │ └── .gitkeep ├── crypto_onetimeauth │ └── poly1305 │ │ └── amd64 │ │ ├── avx │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ ├── avx2 │ │ ├── .gitkeep │ │ ├── EClib.ec │ │ ├── Ops.ec │ │ ├── Poly1305_hop1.ec │ │ ├── Poly1305_hop2.ec │ │ ├── Poly1305_hop3.ec │ │ ├── Poly1305_savx2.ec │ │ ├── Poly1305_savx2_prevec.ec │ │ ├── Poly1305_savx2_vec.ec │ │ ├── Poly1305_spec.ec │ │ ├── Rep3Limb.ec │ │ ├── Rep5Limb.ec │ │ ├── W64limbs.ec │ │ ├── Zp.ec │ │ ├── extracted_ct_proof.ec │ │ ├── extracted_s_equiv.ec │ │ └── extracted_s_proof.ec │ │ └── ref │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec ├── crypto_scalarmult │ └── curve25519 │ │ └── amd64 │ │ ├── mulx │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ ├── ref4 │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ └── ref5 │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec ├── crypto_secretbox │ └── xsalsa20poly1305 │ │ └── amd64 │ │ ├── avx │ │ └── .gitkeep │ │ ├── avx2 │ │ └── .gitkeep │ │ └── ref │ │ └── .gitkeep ├── crypto_sign │ ├── dilithium │ │ ├── dilithium2 │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ └── .gitkeep │ │ │ │ └── ref │ │ │ │ └── .gitkeep │ │ ├── dilithium3 │ │ │ └── amd64 │ │ │ │ ├── avx2 │ │ │ │ └── .gitkeep │ │ │ │ └── ref │ │ │ │ └── .gitkeep │ │ └── dilithium5 │ │ │ └── amd64 │ │ │ ├── avx2 │ │ │ └── .gitkeep │ │ │ └── ref │ │ │ └── .gitkeep │ └── falcon │ │ └── falcon512 │ │ └── amd64 │ │ └── avx2 │ │ └── .gitkeep ├── crypto_stream │ ├── chacha │ │ ├── chacha12 │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ ├── avx2 │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ └── ref │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ ├── chacha20-ietf │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ ├── avx2 │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ └── ref │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ ├── chacha20 │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ ├── avx2 │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ └── ref │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ └── common │ │ │ └── amd64 │ │ │ ├── avx │ │ │ └── .gitkeep │ │ │ ├── avx2 │ │ │ └── .gitkeep │ │ │ └── ref │ │ │ └── .gitkeep │ ├── salsa20 │ │ ├── salsa20 │ │ │ └── amd64 │ │ │ │ ├── avx │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ ├── avx2 │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ │ │ └── ref │ │ │ │ ├── .gitkeep │ │ │ │ └── extracted_ct_proof.ec │ │ └── salsa2012 │ │ │ └── amd64 │ │ │ ├── avx │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ ├── avx2 │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ └── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ └── xsalsa20 │ │ └── amd64 │ │ ├── avx │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ ├── avx2 │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ └── ref │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec ├── crypto_verify │ └── 16 │ │ └── amd64 │ │ └── common │ │ └── .gitkeep ├── crypto_xof │ ├── shake128 │ │ └── amd64 │ │ │ ├── avx2 │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ ├── bmi1 │ │ │ └── .gitkeep │ │ │ ├── ref │ │ │ ├── .gitkeep │ │ │ └── extracted_ct_proof.ec │ │ │ └── ref1 │ │ │ └── .gitkeep │ └── shake256 │ │ └── amd64 │ │ ├── avx2 │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ ├── bmi1 │ │ └── .gitkeep │ │ ├── ref │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ ├── ref1 │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec │ │ └── spec │ │ ├── .gitkeep │ │ └── extracted_ct_proof.ec └── tests.config ├── scripts ├── ci │ ├── config │ │ ├── easycrypt │ │ └── jasmin │ ├── jbcmp0 │ ├── jbcmp1 │ ├── jbcmp2 │ ├── jbcompare │ ├── jbench │ ├── jdiff │ ├── jlog │ ├── jproof │ ├── jsrc │ ├── jtiming │ ├── local │ │ └── run │ ├── misc │ │ ├── jasmin-build-instructions0 │ │ └── jasmin-build-instructions1 │ ├── releaser │ │ ├── jdist-proof │ │ ├── jdist-src-test-v1 │ │ └── jdist-src-v1 │ └── reporter │ │ └── jlog ├── docker │ └── Dockerfile ├── extract-all.sh └── reporter │ └── jlog └── test ├── .gitignore ├── Makefile ├── Makefile.partial_implementations ├── common ├── config.h ├── files.c ├── namespace.h ├── notrandombytes.c ├── print.c ├── print.h ├── print_dist.c ├── randombytes.h ├── try-anything.c └── try-anything.h ├── crypto_hash ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── crypto_kem ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── mlkem │ └── mlkem768 │ │ ├── dec_tests.c │ │ ├── enc_tests.c │ │ └── keypair_tests.c ├── printparams.c ├── safetyparams.c └── test_vectors.c ├── crypto_onetimeauth ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── crypto_scalarmult ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── crypto_secretbox ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── crypto_sign ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── crypto_stream ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── crypto_xof ├── checksumbig.c ├── checksums.c ├── checksumsmall.c ├── functest.c ├── memory.c ├── printparams.c └── safetyparams.c ├── external ├── .gitignore └── crypto_sign │ └── falcon │ └── falcon512 │ └── amd64 │ └── avx2 │ ├── Makefile │ ├── api.h │ ├── codec.c │ ├── common.c │ ├── fft.c │ ├── fpr.c │ ├── fpr.h │ ├── inner.h │ ├── keygen.c │ ├── nist.c │ ├── rng.c │ ├── shake.c │ ├── sign.c │ └── vrfy.c ├── include ├── jade_hash.h ├── jade_kem.h ├── jade_onetimeauth.h ├── jade_scalarmult.h ├── jade_secretbox.h ├── jade_sign.h ├── jade_stream.h ├── jade_xof.h ├── namespace.h └── namespace_dist.h └── scripts └── checksumsok /.github/workflows/amd64-linux-main-build-instructions.yml.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/.github/workflows/amd64-linux-main-build-instructions.yml.0 -------------------------------------------------------------------------------- /.github/workflows/amd64-linux-main-proof.yml.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/.github/workflows/amd64-linux-main-proof.yml.0 -------------------------------------------------------------------------------- /.github/workflows/amd64-linux-main-safety.yml.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/.github/workflows/amd64-linux-main-safety.yml.0 -------------------------------------------------------------------------------- /.github/workflows/amd64-linux-main.yml.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/.github/workflows/amd64-linux-main.yml.0 -------------------------------------------------------------------------------- /.github/workflows/amd64-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/.github/workflows/amd64-linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ci 2 | *.tar.gz 3 | libjade-* 4 | .vscode 5 | result 6 | src/ 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | SPDX-License-Identifier: CC0-1.0 OR Apache-2.0 2 | -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/README.md -------------------------------------------------------------------------------- /bench/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/Makefile -------------------------------------------------------------------------------- /bench/Makefile.partial_implementations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/Makefile.partial_implementations -------------------------------------------------------------------------------- /bench/common/alignedcalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/alignedcalloc.c -------------------------------------------------------------------------------- /bench/common/benchrandombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/benchrandombytes.c -------------------------------------------------------------------------------- /bench/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/config.h -------------------------------------------------------------------------------- /bench/common/cpucycles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/cpucycles.c -------------------------------------------------------------------------------- /bench/common/crypto_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_hash.c -------------------------------------------------------------------------------- /bench/common/crypto_kem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_kem.c -------------------------------------------------------------------------------- /bench/common/crypto_onetimeauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_onetimeauth.c -------------------------------------------------------------------------------- /bench/common/crypto_scalarmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_scalarmult.c -------------------------------------------------------------------------------- /bench/common/crypto_secretbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_secretbox.c -------------------------------------------------------------------------------- /bench/common/crypto_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_sign.c -------------------------------------------------------------------------------- /bench/common/crypto_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_stream.c -------------------------------------------------------------------------------- /bench/common/crypto_xof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/crypto_xof.c -------------------------------------------------------------------------------- /bench/common/increment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/increment.c -------------------------------------------------------------------------------- /bench/common/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/min.c -------------------------------------------------------------------------------- /bench/common/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/namespace.h -------------------------------------------------------------------------------- /bench/common/printbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/printbench.c -------------------------------------------------------------------------------- /bench/common/stability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/bench/common/stability.c -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/default.nix -------------------------------------------------------------------------------- /doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/doc/api.md -------------------------------------------------------------------------------- /ext/.gitignore: -------------------------------------------------------------------------------- 1 | *.s 2 | *.o 3 | *.a 4 | -------------------------------------------------------------------------------- /ext/randombytes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/ext/randombytes/Makefile -------------------------------------------------------------------------------- /ext/randombytes/randombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/ext/randombytes/randombytes.c -------------------------------------------------------------------------------- /ext/randombytes/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/ext/randombytes/randombytes.h -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/flake.nix -------------------------------------------------------------------------------- /oldsrc-should-delete/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/.gitignore -------------------------------------------------------------------------------- /oldsrc-should-delete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/Makefile.checksafety: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/Makefile.checksafety -------------------------------------------------------------------------------- /oldsrc-should-delete/Makefile.checksct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/Makefile.checksct -------------------------------------------------------------------------------- /oldsrc-should-delete/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/Makefile.common -------------------------------------------------------------------------------- /oldsrc-should-delete/Makefile.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/Makefile.functions -------------------------------------------------------------------------------- /oldsrc-should-delete/common/EcFlags.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/common/fips202_4x_DIRTY.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/common/fips202_4x_DIRTY.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/common/fips202_DIRTY.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/common/fips202_DIRTY.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/common/fips202_params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/common/fips202_params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/common/fips202_ref_DIRTY.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/common/fips202_ref_DIRTY.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccak1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccak1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccak1600_nomsf.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccak1600_nomsf.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccakf1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccakf1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccakf1600_4x.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccakf1600_4x.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccakf1600_nomsf.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/avx2/keccakf1600_nomsf.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/bmi1/keccak1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/bmi1/keccak1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/bmi1/keccakf1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/bmi1/keccakf1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/keccak1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/keccak1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/keccakf1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/keccakf1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/keccakf1600_v0.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref/keccakf1600_v0.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref1/keccak1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref1/keccak1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/ref1/keccakf1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/ref1/keccakf1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/spec/keccak1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/spec/keccak1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/keccak/keccak1600/amd64/spec/keccakf1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/keccak/keccak1600/amd64/spec/keccakf1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/common/tofromstack.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/common/tofromstack.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/EcFlags.mk: -------------------------------------------------------------------------------- 1 | ECFN ?= -f namespace 2 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha256/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha256/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha256/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha256/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha256/amd64/ref/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha256/amd64/ref/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha256/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha256/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha256/amd64/ref/sha256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha256/amd64/ref/sha256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha256/amd64/ref/sha256_globals.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha256/amd64/ref/sha256_globals.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/sha3-224.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/avx2/sha3-224.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/sha3-224.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/bmi1/sha3-224.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/sha3-224.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref/sha3-224.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/sha3-224.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-224/amd64/ref1/sha3-224.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/sha3-256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/avx2/sha3-256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/sha3-256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/bmi1/sha3-256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/sha3-256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref/sha3-256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/sha3-256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-256/amd64/ref1/sha3-256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/sha3-384.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/avx2/sha3-384.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/sha3-384.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/bmi1/sha3-384.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/sha3-384.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref/sha3-384.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/sha3-384.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-384/amd64/ref1/sha3-384.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/sha3-512.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/avx2/sha3-512.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/sha3-512.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/bmi1/sha3-512.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/sha3-512.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref/sha3-512.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/sha3-512.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha3-512/amd64/ref1/sha3-512.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha512/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha512/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha512/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha512/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha512/amd64/ref/hash.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha512/amd64/ref/hash.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha512/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha512/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha512/amd64/ref/sha512.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha512/amd64/ref/sha512.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_hash/sha512/amd64/ref/sha512_globals.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_hash/sha512/amd64/ref/sha512_globals.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/EcFlags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/EcFlags.mk -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/consts.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/consts.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/polyvec.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/polyvec.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/reduce.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/reduce.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/shuffle.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/shuffle.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/verify.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/avx2/verify.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/kem.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/kem.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/gen_matrix.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/gen_matrix.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/polyvec.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/polyvec.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/reduce.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/reduce.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/verify.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/verify.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/zetas.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/common/amd64/ref/zetas.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/gen_matrix.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/gen_matrix.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/indcpa.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/indcpa.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/avx2/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/indcpa.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/indcpa.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/amd64/ref/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/common/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber512/common/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber512/hacspec/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/gen_matrix.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/gen_matrix.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/indcpa.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/indcpa.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/avx2/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/indcpa.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/indcpa.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/kem.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/kem.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/polyvec.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/polyvec.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/verify.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/amd64/ref/verify.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/common/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/kyber/kyber768/common/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/kyber/kyber768/hacspec/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/consts.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/consts.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/fips202.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/fips202.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/fips202_4x.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/fips202_4x.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/fips202_common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/fips202_common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/gen_matrix.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/gen_matrix.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/indcpa.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/indcpa.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/kem.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/kem.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/polyvec.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/polyvec.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/reduce.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/reduce.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/shuffle.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/shuffle.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/verify.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/avx2/verify.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/fips202.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/fips202.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/gen_matrix.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/gen_matrix.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/indcpa.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/indcpa.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/kem.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/kem.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/polyvec.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/polyvec.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/reduce.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/reduce.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/verify.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/verify.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/zetas.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/mlkem/mlkem768/amd64/ref/zetas.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/avx2/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/avx2/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/kem.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/kem.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/kem.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/kem.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/scalarmult.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/scalarmult.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_kem/xwing/amd64/ref/sha3.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_kem/xwing/amd64/ref/sha3.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/EcFlags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/EcFlags.mk -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/onetimeauth.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/onetimeauth.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/poly1305.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx/poly1305.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/onetimeauth.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/onetimeauth.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/poly1305.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/avx2/poly1305.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/onetimeauth.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/onetimeauth.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/poly1305.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_onetimeauth/poly1305/amd64/ref/poly1305.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/EcFlags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/EcFlags.mk -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/mulx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/mulx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/mulx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/mulx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/mulx/scalarmult.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/mulx/scalarmult.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref4/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref4/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref4/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref4/scalarmult.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref4/scalarmult.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref5/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref5/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref5/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref5/scalarmult.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_scalarmult/curve25519/amd64/ref5/scalarmult.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/EcFlags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/EcFlags.mk -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx/secretbox.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx/secretbox.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx2/secretbox.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/avx2/secretbox.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/ref/secretbox.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_secretbox/xsalsa20poly1305/amd64/ref/secretbox.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/EcFlags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/EcFlags.mk -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandA.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandA.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandA_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandA_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandMask.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandMask.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandMask_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/expandMask_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/keccak1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/keccak1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/keccakf1600.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/keccakf1600.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/ntt.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/ntt.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/poly_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/poly_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/polyvec_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/polyvec_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/sign_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/avx2/sign_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandA_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandA_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandMask.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandMask.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandMask_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandMask_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandS.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandS.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandS_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/expandS_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/fips202.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/fips202.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/hashing_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/hashing_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/keygen_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/keygen_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/montgomery.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/montgomery.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/ntt.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/ntt.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/packing_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/packing_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/params_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/params_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/poly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/poly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/poly_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/poly_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/polyvec_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/polyvec_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/rounding.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/rounding.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/rounding_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/rounding_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/sign.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/sign.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/sign_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/sign_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/twiddle_factors.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/twiddle_factors.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/common/amd64/verify_end.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/common/amd64/verify_end.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/avx2/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium2/amd64/ref/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/avx2/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium3/amd64/ref/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/avx2/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/packing.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/packing.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/dilithium/dilithium5/amd64/ref/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/.partial: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/NTT.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/NTT.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/NTT_params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/NTT_params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/butterfly.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/butterfly.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/polymul.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/polymul.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/sign.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/sign.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/sign.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/sign.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/table.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/table.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/test.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/test.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/vec.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/vec.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/verify.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/amd64/avx2/verify.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/common/amd64/common.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/common/amd64/common.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/common/amd64/shake256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/common/amd64/shake256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_sign/falcon/falcon512/common/params.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_sign/falcon/falcon512/common/params.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/EcFlags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/EcFlags.mk -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx2/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/avx2/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/ref/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha12/amd64/ref/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/_chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/_chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/_chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/_chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/avx2/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/ref/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20-ietf/amd64/ref/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx2/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/avx2/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/ref/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/chacha20/amd64/ref/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/_chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/_chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_core_h.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_core_h.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_core_v.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_core_v.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_entry_h.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_entry_h.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_h.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_h.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_v.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx/chacha_v.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/_chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/_chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/chacha_h.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/chacha_h.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/chacha_v.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/avx2/chacha_v.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_core.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_core.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_entry.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_entry.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_state.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_state.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_store.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/chacha/common/amd64/ref/chacha_store.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx/_salsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx/_salsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx/salsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx/salsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx/salsa20_v.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx/salsa20_v.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx2/_salsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx2/_salsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx2/salsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx2/salsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx2/salsa20_v.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/avx2/salsa20_v.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/ref/salsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/ref/salsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/common/amd64/ref/salsa20_core.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/common/amd64/ref/salsa20_core.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx2/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/avx2/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/ref/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa20/amd64/ref/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx2/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/avx2/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/ref/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/salsa20/salsa2012/amd64/ref/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/xsalsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx/xsalsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/xsalsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/avx2/xsalsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/hsalsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/hsalsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/stream.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/stream.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/xsalsa20.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_stream/xsalsa20/amd64/ref/xsalsa20.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_verify/16/amd64/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_verify/16/amd64/common/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_verify/16/amd64/common/crypto_verify_16.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_verify/16/amd64/common/crypto_verify_16.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_verify/EcFlags.mk: -------------------------------------------------------------------------------- 1 | ECFN ?= -f namespace 2 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/EcFlags.mk: -------------------------------------------------------------------------------- 1 | ECFN ?= -f namespace 2 | -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/shake128.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/shake128.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/shake128_4x.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/shake128_4x.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/avx2/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/shake128.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/shake128.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/bmi1/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref/shake128.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref/shake128.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/shake128.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/shake128.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake128/amd64/ref1/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/META.yml -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/shake256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/shake256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/shake256_4x.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/shake256_4x.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/avx2/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/shake256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/shake256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/bmi1/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref/shake256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref/shake256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/shake256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/shake256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/ref1/xof.jazz -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/spec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/spec/Makefile -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/spec/include/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/spec/include/api.h -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/spec/shake256.jinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/spec/shake256.jinc -------------------------------------------------------------------------------- /oldsrc-should-delete/crypto_xof/shake256/amd64/spec/xof.jazz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/oldsrc-should-delete/crypto_xof/shake256/amd64/spec/xof.jazz -------------------------------------------------------------------------------- /proof/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/.gitignore -------------------------------------------------------------------------------- /proof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/Makefile -------------------------------------------------------------------------------- /proof/common/keccak/keccak1600/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/common/keccak/keccak1600/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/common/keccak/keccak1600/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/common/keccak/keccak1600/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto-specs: -------------------------------------------------------------------------------- 1 | ../submodules/crypto-specs/ -------------------------------------------------------------------------------- /proof/crypto_hash/sha256/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha256/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha256/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-224/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-224/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-224/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-224/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-224/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-224/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-224/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-224/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-256/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-256/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-256/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-256/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-256/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-256/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-256/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-256/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-384/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-384/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-384/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-384/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-384/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-384/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-384/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-384/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-512/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-512/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-512/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-512/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-512/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-512/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha3-512/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_hash/sha3-512/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha512/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_hash/sha512/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_hash/sha512/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_kem/kyber/kyber512/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_kem/kyber/kyber512/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_kem/kyber/kyber768/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_kem/kyber/kyber768/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_kem/xwing/amd64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/EClib.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/EClib.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Ops.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Ops.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_hop1.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_hop1.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_hop2.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_hop2.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_hop3.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_hop3.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_savx2.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_savx2.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_savx2_prevec.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_savx2_prevec.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_savx2_vec.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_savx2_vec.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_spec.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Poly1305_spec.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Rep3Limb.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Rep3Limb.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Rep5Limb.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Rep5Limb.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/W64limbs.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/W64limbs.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/Zp.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/Zp.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/extracted_s_equiv.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/extracted_s_equiv.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/avx2/extracted_s_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/avx2/extracted_s_proof.ec -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_onetimeauth/poly1305/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_onetimeauth/poly1305/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_scalarmult/curve25519/amd64/mulx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_scalarmult/curve25519/amd64/mulx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_scalarmult/curve25519/amd64/mulx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_scalarmult/curve25519/amd64/ref4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_scalarmult/curve25519/amd64/ref4/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_scalarmult/curve25519/amd64/ref4/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_scalarmult/curve25519/amd64/ref5/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_scalarmult/curve25519/amd64/ref5/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_scalarmult/curve25519/amd64/ref5/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_secretbox/xsalsa20poly1305/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_secretbox/xsalsa20poly1305/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_secretbox/xsalsa20poly1305/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/dilithium/dilithium2/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/dilithium/dilithium2/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/dilithium/dilithium3/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/dilithium/dilithium3/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/dilithium/dilithium5/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/dilithium/dilithium5/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_sign/falcon/falcon512/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha12/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha12/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha12/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha12/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha12/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha12/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha12/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha12/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha12/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20-ietf/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20-ietf/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha20-ietf/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20-ietf/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20-ietf/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha20-ietf/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20-ietf/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20-ietf/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha20-ietf/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha20/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha20/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/chacha20/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/chacha/chacha20/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/common/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/common/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/chacha/common/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa20/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa20/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/salsa20/salsa20/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa20/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa20/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/salsa20/salsa20/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa20/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa20/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/salsa20/salsa20/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa2012/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa2012/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/salsa20/salsa2012/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa2012/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa2012/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/salsa20/salsa2012/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa2012/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/salsa20/salsa2012/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/salsa20/salsa2012/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/xsalsa20/amd64/avx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/xsalsa20/amd64/avx/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/xsalsa20/amd64/avx/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/xsalsa20/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/xsalsa20/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/xsalsa20/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_stream/xsalsa20/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_stream/xsalsa20/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_stream/xsalsa20/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_verify/16/amd64/common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake128/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake128/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_xof/shake128/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_xof/shake128/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake128/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake128/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_xof/shake128/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_xof/shake128/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/avx2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/avx2/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_xof/shake256/amd64/avx2/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/bmi1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/ref/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/ref/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_xof/shake256/amd64/ref/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/ref1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/ref1/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_xof/shake256/amd64/ref1/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/spec/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proof/crypto_xof/shake256/amd64/spec/extracted_ct_proof.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/crypto_xof/shake256/amd64/spec/extracted_ct_proof.ec -------------------------------------------------------------------------------- /proof/tests.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/proof/tests.config -------------------------------------------------------------------------------- /scripts/ci/config/easycrypt: -------------------------------------------------------------------------------- 1 | 2b3bbadffa084466fd3450f367b2102e032c1301 2 | -------------------------------------------------------------------------------- /scripts/ci/config/jasmin: -------------------------------------------------------------------------------- 1 | e4640e7dcdb01d1ba63617a5d78456e1209d699c 2 | -------------------------------------------------------------------------------- /scripts/ci/jbcmp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jbcmp0 -------------------------------------------------------------------------------- /scripts/ci/jbcmp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jbcmp1 -------------------------------------------------------------------------------- /scripts/ci/jbcmp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jbcmp2 -------------------------------------------------------------------------------- /scripts/ci/jbcompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jbcompare -------------------------------------------------------------------------------- /scripts/ci/jbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jbench -------------------------------------------------------------------------------- /scripts/ci/jdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jdiff -------------------------------------------------------------------------------- /scripts/ci/jlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jlog -------------------------------------------------------------------------------- /scripts/ci/jproof: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd "$(dirname "$0")" && sh jlog "*.ec" 4 | -------------------------------------------------------------------------------- /scripts/ci/jsrc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd "$(dirname "$0")" && sh jlog "*.s" 4 | -------------------------------------------------------------------------------- /scripts/ci/jtiming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/jtiming -------------------------------------------------------------------------------- /scripts/ci/local/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/local/run -------------------------------------------------------------------------------- /scripts/ci/misc/jasmin-build-instructions0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/misc/jasmin-build-instructions0 -------------------------------------------------------------------------------- /scripts/ci/misc/jasmin-build-instructions1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/misc/jasmin-build-instructions1 -------------------------------------------------------------------------------- /scripts/ci/releaser/jdist-proof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/releaser/jdist-proof -------------------------------------------------------------------------------- /scripts/ci/releaser/jdist-src-test-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/releaser/jdist-src-test-v1 -------------------------------------------------------------------------------- /scripts/ci/releaser/jdist-src-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/releaser/jdist-src-v1 -------------------------------------------------------------------------------- /scripts/ci/reporter/jlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/ci/reporter/jlog -------------------------------------------------------------------------------- /scripts/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/docker/Dockerfile -------------------------------------------------------------------------------- /scripts/extract-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/extract-all.sh -------------------------------------------------------------------------------- /scripts/reporter/jlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/scripts/reporter/jlog -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/Makefile.partial_implementations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/Makefile.partial_implementations -------------------------------------------------------------------------------- /test/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/config.h -------------------------------------------------------------------------------- /test/common/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/files.c -------------------------------------------------------------------------------- /test/common/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/namespace.h -------------------------------------------------------------------------------- /test/common/notrandombytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/notrandombytes.c -------------------------------------------------------------------------------- /test/common/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/print.c -------------------------------------------------------------------------------- /test/common/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/print.h -------------------------------------------------------------------------------- /test/common/print_dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/print_dist.c -------------------------------------------------------------------------------- /test/common/randombytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/randombytes.h -------------------------------------------------------------------------------- /test/common/try-anything.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/try-anything.c -------------------------------------------------------------------------------- /test/common/try-anything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/common/try-anything.h -------------------------------------------------------------------------------- /test/crypto_hash/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_hash/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_hash/checksums.c -------------------------------------------------------------------------------- /test/crypto_hash/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_hash/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_hash/functest.c -------------------------------------------------------------------------------- /test/crypto_hash/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_hash/memory.c -------------------------------------------------------------------------------- /test/crypto_hash/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_hash/printparams.c -------------------------------------------------------------------------------- /test/crypto_hash/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_hash/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_kem/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_kem/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/checksums.c -------------------------------------------------------------------------------- /test/crypto_kem/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_kem/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/functest.c -------------------------------------------------------------------------------- /test/crypto_kem/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/memory.c -------------------------------------------------------------------------------- /test/crypto_kem/mlkem/mlkem768/dec_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/mlkem/mlkem768/dec_tests.c -------------------------------------------------------------------------------- /test/crypto_kem/mlkem/mlkem768/enc_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/mlkem/mlkem768/enc_tests.c -------------------------------------------------------------------------------- /test/crypto_kem/mlkem/mlkem768/keypair_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/mlkem/mlkem768/keypair_tests.c -------------------------------------------------------------------------------- /test/crypto_kem/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/printparams.c -------------------------------------------------------------------------------- /test/crypto_kem/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_kem/test_vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_kem/test_vectors.c -------------------------------------------------------------------------------- /test/crypto_onetimeauth/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_onetimeauth/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_onetimeauth/checksums.c -------------------------------------------------------------------------------- /test/crypto_onetimeauth/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_onetimeauth/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_onetimeauth/functest.c -------------------------------------------------------------------------------- /test/crypto_onetimeauth/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_onetimeauth/memory.c -------------------------------------------------------------------------------- /test/crypto_onetimeauth/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_onetimeauth/printparams.c -------------------------------------------------------------------------------- /test/crypto_onetimeauth/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_onetimeauth/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_scalarmult/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_scalarmult/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_scalarmult/checksums.c -------------------------------------------------------------------------------- /test/crypto_scalarmult/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_scalarmult/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_scalarmult/functest.c -------------------------------------------------------------------------------- /test/crypto_scalarmult/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_scalarmult/memory.c -------------------------------------------------------------------------------- /test/crypto_scalarmult/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_scalarmult/printparams.c -------------------------------------------------------------------------------- /test/crypto_scalarmult/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_scalarmult/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_secretbox/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_secretbox/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_secretbox/checksums.c -------------------------------------------------------------------------------- /test/crypto_secretbox/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_secretbox/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_secretbox/functest.c -------------------------------------------------------------------------------- /test/crypto_secretbox/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_secretbox/memory.c -------------------------------------------------------------------------------- /test/crypto_secretbox/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_secretbox/printparams.c -------------------------------------------------------------------------------- /test/crypto_secretbox/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_secretbox/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_sign/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_sign/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_sign/checksums.c -------------------------------------------------------------------------------- /test/crypto_sign/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_sign/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_sign/functest.c -------------------------------------------------------------------------------- /test/crypto_sign/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_sign/memory.c -------------------------------------------------------------------------------- /test/crypto_sign/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_sign/printparams.c -------------------------------------------------------------------------------- /test/crypto_sign/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_sign/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_stream/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_stream/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_stream/checksums.c -------------------------------------------------------------------------------- /test/crypto_stream/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_stream/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_stream/functest.c -------------------------------------------------------------------------------- /test/crypto_stream/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_stream/memory.c -------------------------------------------------------------------------------- /test/crypto_stream/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_stream/printparams.c -------------------------------------------------------------------------------- /test/crypto_stream/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_stream/safetyparams.c -------------------------------------------------------------------------------- /test/crypto_xof/checksumbig.c: -------------------------------------------------------------------------------- 1 | #include "checksums.c" 2 | -------------------------------------------------------------------------------- /test/crypto_xof/checksums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_xof/checksums.c -------------------------------------------------------------------------------- /test/crypto_xof/checksumsmall.c: -------------------------------------------------------------------------------- 1 | #define SMALL 2 | #include "checksums.c" 3 | -------------------------------------------------------------------------------- /test/crypto_xof/functest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_xof/functest.c -------------------------------------------------------------------------------- /test/crypto_xof/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_xof/memory.c -------------------------------------------------------------------------------- /test/crypto_xof/printparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_xof/printparams.c -------------------------------------------------------------------------------- /test/crypto_xof/safetyparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/crypto_xof/safetyparams.c -------------------------------------------------------------------------------- /test/external/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/Makefile -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/api.h -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/codec.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/common.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/fft.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/fpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/fpr.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/fpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/fpr.h -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/inner.h -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/keygen.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/nist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/nist.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/rng.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/shake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/shake.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/sign.c -------------------------------------------------------------------------------- /test/external/crypto_sign/falcon/falcon512/amd64/avx2/vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/external/crypto_sign/falcon/falcon512/amd64/avx2/vrfy.c -------------------------------------------------------------------------------- /test/include/jade_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_hash.h -------------------------------------------------------------------------------- /test/include/jade_kem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_kem.h -------------------------------------------------------------------------------- /test/include/jade_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_onetimeauth.h -------------------------------------------------------------------------------- /test/include/jade_scalarmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_scalarmult.h -------------------------------------------------------------------------------- /test/include/jade_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_secretbox.h -------------------------------------------------------------------------------- /test/include/jade_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_sign.h -------------------------------------------------------------------------------- /test/include/jade_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_stream.h -------------------------------------------------------------------------------- /test/include/jade_xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/jade_xof.h -------------------------------------------------------------------------------- /test/include/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/namespace.h -------------------------------------------------------------------------------- /test/include/namespace_dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/include/namespace_dist.h -------------------------------------------------------------------------------- /test/scripts/checksumsok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formosa-crypto/libjade/HEAD/test/scripts/checksumsok --------------------------------------------------------------------------------