├── README.md ├── classgroup_data ├── HKZbasis ├── class number └── dlogs ├── implementation ├── BKZ40.c ├── BKZ50.c ├── HKZbasis.c ├── Makefile ├── README ├── XKCP │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile.build │ ├── README.markdown │ ├── Standalone │ │ ├── CompactFIPS202 │ │ │ ├── C │ │ │ │ ├── Keccak-compact-test.c │ │ │ │ ├── Keccak-more-compact.c │ │ │ │ ├── Keccak-readable-and-compact.c │ │ │ │ ├── TweetableFIPS202-stub.c │ │ │ │ ├── TweetableFIPS202.c │ │ │ │ ├── TweetableFIPS202.tweets │ │ │ │ └── genKAT.c │ │ │ └── Python │ │ │ │ ├── CompactFIPS202-test.py │ │ │ │ ├── CompactFIPS202.py │ │ │ │ ├── CompactFIPS202_numpy.py │ │ │ │ └── KeccakSum.py │ │ └── KangarooTwelve │ │ │ ├── Python │ │ │ ├── K12-test.py │ │ │ ├── K12.py │ │ │ └── M14.py │ │ │ └── Rust │ │ │ └── k12.rs │ ├── doc │ │ ├── HOWTO-customize.build │ │ ├── KeccakDuplex-documentation.h │ │ ├── KeccakPRG-documentation.h │ │ ├── KeccakSponge-documentation.h │ │ ├── Ketje-documentation.h │ │ ├── Keyak-documentation.h │ │ ├── Motorist-documentation.h │ │ ├── PlSnP-documentation.h │ │ ├── SnP-documentation.h │ │ └── figures │ │ │ ├── Layers.png │ │ │ ├── Layers.svg │ │ │ ├── ParallelLayers.png │ │ │ └── ParallelLayers.svg │ ├── lib │ │ ├── HighLevel.build │ │ ├── Ketje.build │ │ ├── Keyak.build │ │ ├── LowLevel.build │ │ ├── common │ │ │ ├── align.h │ │ │ └── brg_endian.h │ │ ├── high │ │ │ ├── KangarooTwelve │ │ │ │ ├── KangarooTwelve.c │ │ │ │ └── KangarooTwelve.h │ │ │ ├── Keccak │ │ │ │ ├── FIPS202 │ │ │ │ │ ├── KeccakHash.c │ │ │ │ │ ├── KeccakHash.h │ │ │ │ │ ├── SimpleFIPS202.c │ │ │ │ │ └── SimpleFIPS202.h │ │ │ │ ├── KeccakDuplex-common.h │ │ │ │ ├── KeccakDuplex.h │ │ │ │ ├── KeccakDuplex.inc │ │ │ │ ├── KeccakDuplexWidth1600.c │ │ │ │ ├── KeccakDuplexWidth1600.h │ │ │ │ ├── KeccakDuplexWidth200.c │ │ │ │ ├── KeccakDuplexWidth200.h │ │ │ │ ├── KeccakDuplexWidth400.c │ │ │ │ ├── KeccakDuplexWidth400.h │ │ │ │ ├── KeccakDuplexWidth800.c │ │ │ │ ├── KeccakDuplexWidth800.h │ │ │ │ ├── KeccakSponge-common.h │ │ │ │ ├── KeccakSponge.h │ │ │ │ ├── KeccakSponge.inc │ │ │ │ ├── KeccakSpongeWidth1600.c │ │ │ │ ├── KeccakSpongeWidth1600.h │ │ │ │ ├── KeccakSpongeWidth200.c │ │ │ │ ├── KeccakSpongeWidth200.h │ │ │ │ ├── KeccakSpongeWidth400.c │ │ │ │ ├── KeccakSpongeWidth400.h │ │ │ │ ├── KeccakSpongeWidth800.c │ │ │ │ ├── KeccakSpongeWidth800.h │ │ │ │ ├── PRG │ │ │ │ │ ├── KeccakPRG-common.h │ │ │ │ │ ├── KeccakPRG.h │ │ │ │ │ ├── KeccakPRG.inc │ │ │ │ │ ├── KeccakPRGWidth1600.c │ │ │ │ │ ├── KeccakPRGWidth1600.h │ │ │ │ │ ├── KeccakPRGWidth200.c │ │ │ │ │ ├── KeccakPRGWidth200.h │ │ │ │ │ ├── KeccakPRGWidth400.c │ │ │ │ │ ├── KeccakPRGWidth400.h │ │ │ │ │ ├── KeccakPRGWidth800.c │ │ │ │ │ └── KeccakPRGWidth800.h │ │ │ │ └── SP800-185 │ │ │ │ │ ├── SP800-185.c │ │ │ │ │ ├── SP800-185.h │ │ │ │ │ └── SP800-185.inc │ │ │ ├── Ketje │ │ │ │ ├── Ketje-common.h │ │ │ │ ├── KetjeJr.c │ │ │ │ ├── KetjeJr.h │ │ │ │ ├── KetjeMj.c │ │ │ │ ├── KetjeMj.h │ │ │ │ ├── KetjeMn.c │ │ │ │ ├── KetjeMn.h │ │ │ │ ├── KetjeSr.c │ │ │ │ ├── KetjeSr.h │ │ │ │ ├── Ketjev2.h │ │ │ │ └── Ketjev2.inc │ │ │ ├── Keyak │ │ │ │ ├── Keyak-common.h │ │ │ │ ├── Keyakv2.h │ │ │ │ ├── Keyakv2.inc │ │ │ │ ├── LakeKeyak.c │ │ │ │ ├── LakeKeyak.h │ │ │ │ ├── LunarKeyak.c │ │ │ │ ├── LunarKeyak.h │ │ │ │ ├── Motorist.inc │ │ │ │ ├── OceanKeyak.c │ │ │ │ ├── OceanKeyak.h │ │ │ │ ├── RiverKeyak.c │ │ │ │ ├── RiverKeyak.h │ │ │ │ ├── SeaKeyak.c │ │ │ │ └── SeaKeyak.h │ │ │ ├── Kravatte │ │ │ │ ├── Kravatte.c │ │ │ │ ├── Kravatte.h │ │ │ │ ├── KravatteModes.c │ │ │ │ └── KravatteModes.h │ │ │ ├── Xoofff │ │ │ │ ├── Xoofff.c │ │ │ │ ├── Xoofff.h │ │ │ │ ├── XoofffModes.c │ │ │ │ └── XoofffModes.h │ │ │ └── common │ │ │ │ └── Phases.h │ │ └── low │ │ │ ├── KeccakP-1600-times2 │ │ │ ├── FallbackOn1 │ │ │ │ ├── KeccakP-1600-times2-SnP.h │ │ │ │ └── KeccakP-1600-times2-on1.c │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── KeccakP-1600-inplace-pl2-armv7a-neon-le-armcc.s │ │ │ │ ├── KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s │ │ │ │ └── KeccakP-1600-times2-SnP.h │ │ │ ├── SIMD128 │ │ │ │ ├── KeccakP-1600-times2-SIMD128.c │ │ │ │ ├── KeccakP-1600-times2-SnP.h │ │ │ │ ├── SSE2u2 │ │ │ │ │ └── SIMD128-config.h │ │ │ │ ├── SSE2ufull │ │ │ │ │ └── SIMD128-config.h │ │ │ │ ├── XOPu2 │ │ │ │ │ └── SIMD128-config.h │ │ │ │ └── XOPufull │ │ │ │ │ └── SIMD128-config.h │ │ │ └── SIMD512 │ │ │ │ ├── AVX512u12 │ │ │ │ └── SIMD512-2-config.h │ │ │ │ ├── AVX512u4 │ │ │ │ └── SIMD512-2-config.h │ │ │ │ ├── AVX512ufull │ │ │ │ └── SIMD512-2-config.h │ │ │ │ ├── KeccakP-1600-times2-SIMD512.c │ │ │ │ └── KeccakP-1600-times2-SnP.h │ │ │ ├── KeccakP-1600-times4 │ │ │ ├── FallbackOn1 │ │ │ │ ├── KeccakP-1600-times4-SnP.h │ │ │ │ └── KeccakP-1600-times4-on1.c │ │ │ ├── FallbackOn2 │ │ │ │ ├── KeccakP-1600-times4-SnP.h │ │ │ │ └── KeccakP-1600-times4-on2.c │ │ │ ├── SIMD256 │ │ │ │ ├── AVX2u12 │ │ │ │ │ └── SIMD256-config.h │ │ │ │ ├── AVX2u6 │ │ │ │ │ └── SIMD256-config.h │ │ │ │ ├── AVX2ufull │ │ │ │ │ └── SIMD256-config.h │ │ │ │ ├── KeccakP-1600-times4-SIMD256.c │ │ │ │ └── KeccakP-1600-times4-SnP.h │ │ │ └── SIMD512 │ │ │ │ ├── AVX512u12 │ │ │ │ └── SIMD512-4-config.h │ │ │ │ ├── AVX512u4 │ │ │ │ └── SIMD512-4-config.h │ │ │ │ ├── AVX512ufull │ │ │ │ └── SIMD512-4-config.h │ │ │ │ ├── KeccakP-1600-times4-SIMD512.c │ │ │ │ └── KeccakP-1600-times4-SnP.h │ │ │ ├── KeccakP-1600-times8 │ │ │ ├── FallbackOn1 │ │ │ │ ├── KeccakP-1600-times8-SnP.h │ │ │ │ └── KeccakP-1600-times8-on1.c │ │ │ ├── FallbackOn2 │ │ │ │ ├── KeccakP-1600-times8-SnP.h │ │ │ │ └── KeccakP-1600-times8-on2.c │ │ │ ├── FallbackOn4 │ │ │ │ ├── KeccakP-1600-times8-SnP.h │ │ │ │ └── KeccakP-1600-times8-on4.c │ │ │ └── SIMD512 │ │ │ │ ├── AVX512u12 │ │ │ │ └── SIMD512-config.h │ │ │ │ ├── AVX512u4 │ │ │ │ └── SIMD512-config.h │ │ │ │ ├── AVX512ufull │ │ │ │ └── SIMD512-config.h │ │ │ │ ├── KeccakP-1600-times8-SIMD512.c │ │ │ │ └── KeccakP-1600-times8-SnP.h │ │ │ ├── KeccakP-1600 │ │ │ ├── Compact64 │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ └── KeccakP-1600-compact64.c │ │ │ ├── Inplace32BI │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ └── KeccakP-1600-inplace32BI.c │ │ │ ├── Optimized │ │ │ │ ├── KeccakP-1600-64.macros │ │ │ │ └── KeccakP-1600-unrolling.macros │ │ │ ├── Optimized32biAsmARM │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-inplace-32bi-armv6m-le-armcc.s │ │ │ │ ├── KeccakP-1600-inplace-32bi-armv6m-le-gcc.s │ │ │ │ ├── KeccakP-1600-inplace-32bi-armv7a-le-armcc.s │ │ │ │ ├── KeccakP-1600-inplace-32bi-armv7a-le-gcc.s │ │ │ │ ├── KeccakP-1600-inplace-32bi-armv7m-le-armcc.s │ │ │ │ ├── KeccakP-1600-inplace-32bi-armv7m-le-gcc.s │ │ │ │ ├── KeccakP-1600-u1-32bi-armv6m-le-armcc.s │ │ │ │ ├── KeccakP-1600-u1-32bi-armv6m-le-gcc.s │ │ │ │ ├── KeccakP-1600-u2-32bi-armv6m-le-armcc.s │ │ │ │ └── KeccakP-1600-u2-32bi-armv6m-le-gcc.s │ │ │ ├── Optimized64 │ │ │ │ ├── CompiledByGCC474forHaswell │ │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ │ └── KeccakP-1600-opt64.s │ │ │ │ ├── CompiledByGCC474forNehalem │ │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ │ └── KeccakP-1600-opt64.s │ │ │ │ ├── CompiledByGCC474forSandyBridge │ │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ │ └── KeccakP-1600-opt64.s │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-opt64.c │ │ │ │ ├── LCu6 │ │ │ │ │ └── KeccakP-1600-opt64-config.h │ │ │ │ ├── LCufull │ │ │ │ │ └── KeccakP-1600-opt64-config.h │ │ │ │ ├── LCufullshld │ │ │ │ │ └── KeccakP-1600-opt64-config.h │ │ │ │ ├── u6 │ │ │ │ │ └── KeccakP-1600-opt64-config.h │ │ │ │ └── ufull │ │ │ │ │ └── KeccakP-1600-opt64-config.h │ │ │ ├── Optimized64AsmARM │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ └── KeccakP-1600-armv8a-neon.s │ │ │ ├── OptimizedAVX2 │ │ │ │ ├── KeccakP-1600-AVX2.s │ │ │ │ └── KeccakP-1600-SnP.h │ │ │ ├── OptimizedAVX512a │ │ │ │ ├── KeccakP-1600-AVX512.s │ │ │ │ └── KeccakP-1600-SnP.h │ │ │ ├── OptimizedAVX512c │ │ │ │ ├── AVX512u12 │ │ │ │ │ └── KeccakP-1600-AVX512-config.h │ │ │ │ ├── AVX512u6 │ │ │ │ │ └── KeccakP-1600-AVX512-config.h │ │ │ │ ├── AVX512ufull │ │ │ │ │ └── KeccakP-1600-AVX512-config.h │ │ │ │ ├── KeccakP-1600-AVX512.c │ │ │ │ └── KeccakP-1600-SnP.h │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-armv7a-le-neon-armcc.s │ │ │ │ └── KeccakP-1600-armv7a-le-neon-gcc.s │ │ │ ├── OptimizedAsmAVR8 │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-avr8-compact.s │ │ │ │ └── KeccakP-1600-avr8-fast.s │ │ │ ├── OptimizedAsmX86-64 │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-x86-64-gas.s │ │ │ │ ├── KeccakP-1600-x86-64-gas_Apple.s │ │ │ │ └── KeccakP-1600-x86-64-shld-gas.s │ │ │ ├── OptimizedXOP │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-XOP.c │ │ │ │ ├── u6 │ │ │ │ │ └── KeccakP-1600-XOP-config.h │ │ │ │ └── ufull │ │ │ │ │ └── KeccakP-1600-XOP-config.h │ │ │ ├── Reference │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-reference.c │ │ │ │ └── KeccakP-1600-reference.h │ │ │ └── Reference32BI │ │ │ │ ├── KeccakP-1600-SnP.h │ │ │ │ ├── KeccakP-1600-reference.h │ │ │ │ └── KeccakP-1600-reference32BI.c │ │ │ ├── KeccakP-200 │ │ │ ├── Compact │ │ │ │ ├── KeccakP-200-SnP.h │ │ │ │ └── KeccakP-200-compact.c │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── KeccakP-200-SnP.h │ │ │ │ ├── KeccakP-200-armv6m-le-armcc.s │ │ │ │ ├── KeccakP-200-armv6m-le-gcc.s │ │ │ │ ├── KeccakP-200-armv7m-le-armcc.s │ │ │ │ └── KeccakP-200-armv7m-le-gcc.s │ │ │ ├── OptimizedAsmAVR8 │ │ │ │ ├── KeccakP-200-SnP.h │ │ │ │ └── KeccakP-200-avr8-fast.s │ │ │ └── Reference │ │ │ │ ├── KeccakP-200-SnP.h │ │ │ │ ├── KeccakP-200-reference.c │ │ │ │ └── KeccakP-200-reference.h │ │ │ ├── KeccakP-400 │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── KeccakP-400-SnP.h │ │ │ │ ├── KeccakP-400-armv6m-le-armcc.s │ │ │ │ ├── KeccakP-400-armv6m-le-gcc.s │ │ │ │ ├── KeccakP-400-armv7m-le-armcc.s │ │ │ │ └── KeccakP-400-armv7m-le-gcc.s │ │ │ ├── OptimizedAsmAVR8 │ │ │ │ ├── KeccakP-400-SnP.h │ │ │ │ └── KeccakP-400-avr8-fast.s │ │ │ └── Reference │ │ │ │ ├── KeccakP-400-SnP.h │ │ │ │ ├── KeccakP-400-reference.c │ │ │ │ └── KeccakP-400-reference.h │ │ │ ├── KeccakP-800 │ │ │ ├── Compact │ │ │ │ ├── KeccakP-800-SnP.h │ │ │ │ └── KeccakP-800-compact.c │ │ │ ├── Optimized32 │ │ │ │ ├── KeccakP-800-SnP.h │ │ │ │ ├── KeccakP-800-opt32-bis.macros │ │ │ │ ├── KeccakP-800-opt32.c │ │ │ │ ├── KeccakP-800-opt32.macros │ │ │ │ ├── KeccakP-800-unrolling-bis.macros │ │ │ │ ├── KeccakP-800-unrolling.macros │ │ │ │ ├── LCu2 │ │ │ │ │ └── KeccakP-800-opt32-config.h │ │ │ │ ├── LCufull │ │ │ │ │ └── KeccakP-800-opt32-config.h │ │ │ │ ├── u2 │ │ │ │ │ └── KeccakP-800-opt32-config.h │ │ │ │ └── ufull │ │ │ │ │ └── KeccakP-800-opt32-config.h │ │ │ ├── Optimized64AsmARM │ │ │ │ ├── KeccakP-800-SnP.h │ │ │ │ └── KeccakP-800-armv8a-neon.s │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── KeccakP-800-SnP.h │ │ │ │ ├── KeccakP-800-u1-armv6m-le-armcc.s │ │ │ │ ├── KeccakP-800-u1-armv6m-le-gcc.s │ │ │ │ ├── KeccakP-800-u2-armv6m-le-armcc.s │ │ │ │ ├── KeccakP-800-u2-armv6m-le-gcc.s │ │ │ │ ├── KeccakP-800-u2-armv7a-le-armcc.s │ │ │ │ ├── KeccakP-800-u2-armv7a-le-gcc.s │ │ │ │ ├── KeccakP-800-u2-armv7m-le-armcc.s │ │ │ │ ├── KeccakP-800-u2-armv7m-le-gcc.s │ │ │ │ ├── KeccakP-800-uf-armv7m-le-armcc.s │ │ │ │ └── KeccakP-800-uf-armv7m-le-gcc.s │ │ │ ├── OptimizedAsmAVR8 │ │ │ │ ├── KeccakP-800-SnP.h │ │ │ │ └── KeccakP-800-avr8-fast.s │ │ │ └── Reference │ │ │ │ ├── KeccakP-800-SnP.h │ │ │ │ ├── KeccakP-800-reference.c │ │ │ │ └── KeccakP-800-reference.h │ │ │ ├── Ketje │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── Ket-common.h │ │ │ │ ├── Ket-documentation.h │ │ │ │ ├── KetJr.h │ │ │ │ ├── KetSr.h │ │ │ │ ├── KetjeJr-armv7m-le-armcc.s │ │ │ │ ├── KetjeJr-armv7m-le-gcc.s │ │ │ │ ├── KetjeSr-armv7m-le-armcc.s │ │ │ │ └── KetjeSr-armv7m-le-gcc.s │ │ │ ├── OptimizedLE │ │ │ │ ├── Ket-common.h │ │ │ │ ├── Ket-documentation.h │ │ │ │ ├── Ket.inc │ │ │ │ ├── KetJr.c │ │ │ │ ├── KetJr.h │ │ │ │ ├── KetMj.c │ │ │ │ ├── KetMj.h │ │ │ │ ├── KetMn.c │ │ │ │ ├── KetMn.h │ │ │ │ ├── KetSr.c │ │ │ │ └── KetSr.h │ │ │ └── SnP-compliant │ │ │ │ ├── Ket-common.h │ │ │ │ ├── Ket-documentation.h │ │ │ │ ├── Ket.inc │ │ │ │ ├── KetJr.c │ │ │ │ ├── KetJr.h │ │ │ │ ├── KetMj.c │ │ │ │ ├── KetMj.h │ │ │ │ ├── KetMn.c │ │ │ │ ├── KetMn.h │ │ │ │ ├── KetSr.c │ │ │ │ └── KetSr.h │ │ │ ├── Xoodoo-times16 │ │ │ ├── FallbackOn1 │ │ │ │ ├── Xoodoo-times16-SnP.h │ │ │ │ └── Xoodoo-times16-on1.c │ │ │ └── SIMD512 │ │ │ │ ├── Xoodoo-times16-SIMD512.c │ │ │ │ └── Xoodoo-times16-SnP.h │ │ │ ├── Xoodoo-times4 │ │ │ ├── FallbackOn1 │ │ │ │ ├── Xoodoo-times4-SnP.h │ │ │ │ └── Xoodoo-times4-on1.c │ │ │ ├── SIMD128 │ │ │ │ ├── Xoodoo-times4-SIMD128.c │ │ │ │ └── Xoodoo-times4-SnP.h │ │ │ └── SIMD512 │ │ │ │ ├── Xoodoo-times4-SIMD512.c │ │ │ │ └── Xoodoo-times4-SnP.h │ │ │ ├── Xoodoo-times8 │ │ │ ├── FallbackOn1 │ │ │ │ ├── Xoodoo-times8-SnP.h │ │ │ │ └── Xoodoo-times8-on1.c │ │ │ ├── SIMD256 │ │ │ │ ├── Xoodoo-times8-SIMD256.c │ │ │ │ └── Xoodoo-times8-SnP.h │ │ │ └── SIMD512 │ │ │ │ ├── Xoodoo-times8-SIMD512.c │ │ │ │ └── Xoodoo-times8-SnP.h │ │ │ ├── Xoodoo │ │ │ ├── Optimized │ │ │ │ ├── Xoodoo-SnP.h │ │ │ │ └── Xoodoo-optimized.c │ │ │ ├── OptimizedAsmARM │ │ │ │ ├── Xoodoo-SnP.h │ │ │ │ ├── Xoodoo-u1-armv6m-le-armcc.s │ │ │ │ ├── Xoodoo-u1-armv6m-le-gcc.s │ │ │ │ ├── Xoodoo-uf-armv7m-le-armcc.s │ │ │ │ └── Xoodoo-uf-armv7m-le-gcc.s │ │ │ ├── OptimizedSIMD128 │ │ │ │ ├── Xoodoo-SIMD128.c │ │ │ │ └── Xoodoo-SnP.h │ │ │ ├── OptimizedSIMD512 │ │ │ │ ├── Xoodoo-SIMD512.c │ │ │ │ └── Xoodoo-SnP.h │ │ │ ├── Reference │ │ │ │ ├── Xoodoo-SnP.h │ │ │ │ └── Xoodoo-reference.c │ │ │ └── Xoodoo.h │ │ │ └── common │ │ │ ├── PlSnP-Fallback.inc │ │ │ └── SnP-Relaned.h │ ├── support │ │ ├── Build │ │ │ ├── ExpandProducts.xsl │ │ │ ├── ToGlobalMakefile.xsl │ │ │ ├── ToOneTarget.xsl │ │ │ ├── ToTargetMakefile.xsl │ │ │ └── ToVCXProj.xsl │ │ └── Kernel-PMU │ │ │ ├── Kernel-pmu.md │ │ │ ├── Makefile │ │ │ ├── enable_arm_pmu.c │ │ │ └── load-module │ ├── tests │ │ ├── SUPERCOP │ │ │ ├── KangarooTwelve │ │ │ │ ├── K12.c │ │ │ │ ├── KeccakP-1600-times2-SnP.h │ │ │ │ ├── KeccakP-1600-times4-SnP.h │ │ │ │ ├── KeccakP-1600-times8-SnP.h │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── KetjeJr │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── KetjeMj │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── KetjeMn │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── KetjeSr │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── LakeKeyak │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── LunarKeyak │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── OceanKeyak │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── RiverKeyak │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── SHA3-224 │ │ │ │ ├── SHA3-224.c │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── SHA3-256 │ │ │ │ ├── SHA3-256.c │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── SHA3-384 │ │ │ │ ├── SHA3-384.c │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── SHA3-512 │ │ │ │ ├── SHA3-512.c │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── SHAKE128 │ │ │ │ ├── SHAKE128.c │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── SHAKE256 │ │ │ │ ├── SHAKE256.c │ │ │ │ ├── api.h │ │ │ │ ├── crypto_hash.h │ │ │ │ └── selftest.c │ │ │ ├── SUPERCOP.build │ │ │ ├── SeaKeyak │ │ │ │ ├── api.h │ │ │ │ ├── crypto_aead.h │ │ │ │ ├── encrypt.c │ │ │ │ └── selftest.c │ │ │ ├── test_crypto_aead.c │ │ │ ├── test_crypto_aead.h │ │ │ ├── test_crypto_hash.c │ │ │ └── test_crypto_hash.h │ │ ├── TestVectors │ │ │ ├── KangarooTwelve.txt │ │ │ ├── KeccakDuplexIntermediateValues_r1026c574.txt │ │ │ ├── KeccakDuplexIntermediateValues_r1027c573.txt │ │ │ ├── KeccakF-1600-IntermediateValues.txt │ │ │ ├── KeccakF-1600-IntermediateValues32BI.txt │ │ │ ├── KeccakF-200-IntermediateValues.txt │ │ │ ├── KeccakF-400-IntermediateValues.txt │ │ │ ├── KeccakF-800-IntermediateValues.txt │ │ │ ├── KeccakSpongeIntermediateValues_SHA3-224.txt │ │ │ ├── KeccakSpongeIntermediateValues_SHA3-256.txt │ │ │ ├── KeccakSpongeIntermediateValues_SHA3-384.txt │ │ │ ├── KeccakSpongeIntermediateValues_SHA3-512.txt │ │ │ ├── KeccakSpongeIntermediateValues_SHAKE128.txt │ │ │ ├── KeccakSpongeIntermediateValues_SHAKE256.txt │ │ │ ├── KeccakSpongeIntermediateValues_r1344c256.txt │ │ │ ├── KetjeJr.txt │ │ │ ├── KetjeMj.txt │ │ │ ├── KetjeMn.txt │ │ │ ├── KetjeSr.txt │ │ │ ├── ShortMsgKAT.txt │ │ │ ├── ShortMsgKAT_Keccakr144c256.txt │ │ │ ├── ShortMsgKAT_Keccakr240c160.txt │ │ │ ├── ShortMsgKAT_Keccakr288c512.txt │ │ │ ├── ShortMsgKAT_Keccakr40c160.txt │ │ │ ├── ShortMsgKAT_Keccakr544c256.txt │ │ │ ├── ShortMsgKAT_Keccakr640c160.txt │ │ │ ├── ShortMsgKAT_SHA3-224.txt │ │ │ ├── ShortMsgKAT_SHA3-256.txt │ │ │ ├── ShortMsgKAT_SHA3-384.txt │ │ │ ├── ShortMsgKAT_SHA3-512.txt │ │ │ ├── ShortMsgKAT_SHAKE128.txt │ │ │ └── ShortMsgKAT_SHAKE256.txt │ │ └── UnitTests │ │ │ ├── displayIntermediateValues.c │ │ │ ├── displayIntermediateValues.h │ │ │ ├── genKAT.c │ │ │ ├── genKAT.h │ │ │ ├── main.c │ │ │ ├── testDuplex.c │ │ │ ├── testDuplex.h │ │ │ ├── testDuplex.inc │ │ │ ├── testKangarooTwelve.c │ │ │ ├── testKangarooTwelve.h │ │ │ ├── testKeccakPRG.c │ │ │ ├── testKeccakPRG.h │ │ │ ├── testKeccakPRG.inc │ │ │ ├── testKetjev2.c │ │ │ ├── testKetjev2.h │ │ │ ├── testKetjev2.inc │ │ │ ├── testKeyakv2.c │ │ │ ├── testKeyakv2.h │ │ │ ├── testKeyakv2.inc │ │ │ ├── testKravatte.c │ │ │ ├── testKravatte.h │ │ │ ├── testKravatteModes.c │ │ │ ├── testKravatteModes.h │ │ │ ├── testMotorist.c │ │ │ ├── testMotorist.h │ │ │ ├── testMotorist.inc │ │ │ ├── testPerformance.c │ │ │ ├── testPerformance.h │ │ │ ├── testPlSnP.c │ │ │ ├── testPlSnP.h │ │ │ ├── testPlSnP.inc │ │ │ ├── testSP800-185.c │ │ │ ├── testSP800-185.h │ │ │ ├── testSnP.c │ │ │ ├── testSnP.h │ │ │ ├── testSnP.inc │ │ │ ├── testSponge.c │ │ │ ├── testSponge.h │ │ │ ├── testSponge.inc │ │ │ ├── testXooMain.c │ │ │ ├── testXooPerformance.c │ │ │ ├── testXooPerformance.h │ │ │ ├── testXooPlSnP.c │ │ │ ├── testXooPlSnP.h │ │ │ ├── testXooPlSnP.inc │ │ │ ├── testXooSnP.c │ │ │ ├── testXooSnP.h │ │ │ ├── testXooSnP.inc │ │ │ ├── testXoofff.c │ │ │ ├── testXoofff.h │ │ │ ├── testXoofffModes.c │ │ │ ├── testXoofffModes.h │ │ │ ├── timing.h │ │ │ ├── timingKeyak.inc │ │ │ ├── timingPlSnP.inc │ │ │ ├── timingSnP.inc │ │ │ ├── timingSponge.inc │ │ │ ├── timingXooPlSnP.inc │ │ │ └── timingXooSnP.inc │ └── util │ │ └── KeccakSum │ │ ├── KeccakSum.c │ │ ├── base64.c │ │ └── base64.h ├── bench.c ├── classgroup.c ├── classgroup.h ├── constants.h ├── csidh.c ├── csidh.h ├── csifish.c ├── csifish.h ├── disttest.c ├── fp.c ├── fp.h ├── main.c ├── merkletree.c ├── merkletree.h ├── mont.c ├── mont.h ├── p512 │ ├── constants.c │ ├── fp.s │ ├── params.h │ └── uint.s ├── parameters.h ├── pool.c ├── reduce.c ├── reduce.h ├── rng.c ├── rng.h ├── supersingular.sage ├── test.c ├── uint.c └── uint.h └── paper └── paper.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/README.md -------------------------------------------------------------------------------- /classgroup_data/HKZbasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/classgroup_data/HKZbasis -------------------------------------------------------------------------------- /classgroup_data/class number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/classgroup_data/class number -------------------------------------------------------------------------------- /classgroup_data/dlogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/classgroup_data/dlogs -------------------------------------------------------------------------------- /implementation/BKZ40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/BKZ40.c -------------------------------------------------------------------------------- /implementation/BKZ50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/BKZ50.c -------------------------------------------------------------------------------- /implementation/HKZbasis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/HKZbasis.c -------------------------------------------------------------------------------- /implementation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/Makefile -------------------------------------------------------------------------------- /implementation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/README -------------------------------------------------------------------------------- /implementation/XKCP/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | var/ 3 | __pycache__ -------------------------------------------------------------------------------- /implementation/XKCP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/LICENSE -------------------------------------------------------------------------------- /implementation/XKCP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Makefile -------------------------------------------------------------------------------- /implementation/XKCP/Makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Makefile.build -------------------------------------------------------------------------------- /implementation/XKCP/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/README.markdown -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/Keccak-compact-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/Keccak-compact-test.c -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/Keccak-more-compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/Keccak-more-compact.c -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/Keccak-readable-and-compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/Keccak-readable-and-compact.c -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/TweetableFIPS202-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/TweetableFIPS202-stub.c -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/TweetableFIPS202.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/TweetableFIPS202.c -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/TweetableFIPS202.tweets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/TweetableFIPS202.tweets -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/C/genKAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/C/genKAT.c -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/Python/CompactFIPS202-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/Python/CompactFIPS202-test.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/Python/CompactFIPS202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/Python/CompactFIPS202.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/Python/CompactFIPS202_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/Python/CompactFIPS202_numpy.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/CompactFIPS202/Python/KeccakSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/CompactFIPS202/Python/KeccakSum.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/KangarooTwelve/Python/K12-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/KangarooTwelve/Python/K12-test.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/KangarooTwelve/Python/K12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/KangarooTwelve/Python/K12.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/KangarooTwelve/Python/M14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/KangarooTwelve/Python/M14.py -------------------------------------------------------------------------------- /implementation/XKCP/Standalone/KangarooTwelve/Rust/k12.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/Standalone/KangarooTwelve/Rust/k12.rs -------------------------------------------------------------------------------- /implementation/XKCP/doc/HOWTO-customize.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/HOWTO-customize.build -------------------------------------------------------------------------------- /implementation/XKCP/doc/KeccakDuplex-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/KeccakDuplex-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/KeccakPRG-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/KeccakPRG-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/KeccakSponge-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/KeccakSponge-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/Ketje-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/Ketje-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/Keyak-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/Keyak-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/Motorist-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/Motorist-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/PlSnP-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/PlSnP-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/SnP-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/SnP-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/doc/figures/Layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/figures/Layers.png -------------------------------------------------------------------------------- /implementation/XKCP/doc/figures/Layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/figures/Layers.svg -------------------------------------------------------------------------------- /implementation/XKCP/doc/figures/ParallelLayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/figures/ParallelLayers.png -------------------------------------------------------------------------------- /implementation/XKCP/doc/figures/ParallelLayers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/doc/figures/ParallelLayers.svg -------------------------------------------------------------------------------- /implementation/XKCP/lib/HighLevel.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/HighLevel.build -------------------------------------------------------------------------------- /implementation/XKCP/lib/Ketje.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/Ketje.build -------------------------------------------------------------------------------- /implementation/XKCP/lib/Keyak.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/Keyak.build -------------------------------------------------------------------------------- /implementation/XKCP/lib/LowLevel.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/LowLevel.build -------------------------------------------------------------------------------- /implementation/XKCP/lib/common/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/common/align.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/common/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/common/brg_endian.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/KangarooTwelve/KangarooTwelve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/KangarooTwelve/KangarooTwelve.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/KangarooTwelve/KangarooTwelve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/KangarooTwelve/KangarooTwelve.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/FIPS202/KeccakHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/FIPS202/KeccakHash.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/FIPS202/KeccakHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/FIPS202/KeccakHash.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/FIPS202/SimpleFIPS202.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/FIPS202/SimpleFIPS202.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/FIPS202/SimpleFIPS202.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/FIPS202/SimpleFIPS202.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplex-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplex-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplex.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplex.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth1600.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth1600.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth1600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth1600.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth200.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth200.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth400.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth400.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth800.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakDuplexWidth800.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSponge-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSponge-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSponge.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSponge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSponge.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth1600.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth1600.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth1600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth1600.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth200.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth200.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth400.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth400.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth800.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/KeccakSpongeWidth800.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRG-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRG-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRG.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRG.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRG.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth1600.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth1600.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth1600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth1600.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth200.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth200.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth400.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth400.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth800.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth800.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/PRG/KeccakPRGWidth800.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/SP800-185/SP800-185.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/SP800-185/SP800-185.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/SP800-185/SP800-185.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/SP800-185/SP800-185.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keccak/SP800-185/SP800-185.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keccak/SP800-185/SP800-185.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/Ketje-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/Ketje-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeJr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeJr.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeJr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeJr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeMj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeMj.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeMj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeMj.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeMn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeMn.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeMn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeMn.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeSr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeSr.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/KetjeSr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/KetjeSr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/Ketjev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/Ketjev2.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Ketje/Ketjev2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Ketje/Ketjev2.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/Keyak-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/Keyak-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/Keyakv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/Keyakv2.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/Keyakv2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/Keyakv2.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/LakeKeyak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/LakeKeyak.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/LakeKeyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/LakeKeyak.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/LunarKeyak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/LunarKeyak.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/LunarKeyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/LunarKeyak.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/Motorist.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/Motorist.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/OceanKeyak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/OceanKeyak.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/OceanKeyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/OceanKeyak.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/RiverKeyak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/RiverKeyak.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/RiverKeyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/RiverKeyak.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/SeaKeyak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/SeaKeyak.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Keyak/SeaKeyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Keyak/SeaKeyak.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Kravatte/Kravatte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Kravatte/Kravatte.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Kravatte/Kravatte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Kravatte/Kravatte.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Kravatte/KravatteModes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Kravatte/KravatteModes.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Kravatte/KravatteModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Kravatte/KravatteModes.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Xoofff/Xoofff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Xoofff/Xoofff.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Xoofff/Xoofff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Xoofff/Xoofff.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Xoofff/XoofffModes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Xoofff/XoofffModes.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/Xoofff/XoofffModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/Xoofff/XoofffModes.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/high/common/Phases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/high/common/Phases.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/FallbackOn1/KeccakP-1600-times2-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/FallbackOn1/KeccakP-1600-times2-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/FallbackOn1/KeccakP-1600-times2-on1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/FallbackOn1/KeccakP-1600-times2-on1.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/OptimizedAsmARM/KeccakP-1600-inplace-pl2-armv7a-neon-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/OptimizedAsmARM/KeccakP-1600-inplace-pl2-armv7a-neon-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/OptimizedAsmARM/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/OptimizedAsmARM/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/OptimizedAsmARM/KeccakP-1600-times2-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/OptimizedAsmARM/KeccakP-1600-times2-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SIMD128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SIMD128.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSE2u2/SIMD128-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSE2u2/SIMD128-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSE2ufull/SIMD128-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSE2ufull/SIMD128-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/XOPu2/SIMD128-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/XOPu2/SIMD128-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/XOPufull/SIMD128-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD128/XOPufull/SIMD128-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/AVX512u12/SIMD512-2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/AVX512u12/SIMD512-2-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/AVX512u4/SIMD512-2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/AVX512u4/SIMD512-2-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/AVX512ufull/SIMD512-2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/AVX512ufull/SIMD512-2-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/KeccakP-1600-times2-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/KeccakP-1600-times2-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/KeccakP-1600-times2-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times2/SIMD512/KeccakP-1600-times2-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn1/KeccakP-1600-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn1/KeccakP-1600-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn1/KeccakP-1600-times4-on1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn1/KeccakP-1600-times4-on1.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn2/KeccakP-1600-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn2/KeccakP-1600-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn2/KeccakP-1600-times4-on2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/FallbackOn2/KeccakP-1600-times4-on2.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/AVX2u12/SIMD256-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/AVX2u12/SIMD256-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/AVX2u6/SIMD256-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/AVX2u6/SIMD256-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/AVX2ufull/SIMD256-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/AVX2ufull/SIMD256-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/KeccakP-1600-times4-SIMD256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/KeccakP-1600-times4-SIMD256.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/KeccakP-1600-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD256/KeccakP-1600-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/AVX512u12/SIMD512-4-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/AVX512u12/SIMD512-4-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/AVX512u4/SIMD512-4-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/AVX512u4/SIMD512-4-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/AVX512ufull/SIMD512-4-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/AVX512ufull/SIMD512-4-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/KeccakP-1600-times4-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/KeccakP-1600-times4-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/KeccakP-1600-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times4/SIMD512/KeccakP-1600-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn1/KeccakP-1600-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn1/KeccakP-1600-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn1/KeccakP-1600-times8-on1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn1/KeccakP-1600-times8-on1.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn2/KeccakP-1600-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn2/KeccakP-1600-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn2/KeccakP-1600-times8-on2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn2/KeccakP-1600-times8-on2.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn4/KeccakP-1600-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn4/KeccakP-1600-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn4/KeccakP-1600-times8-on4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/FallbackOn4/KeccakP-1600-times8-on4.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/AVX512u12/SIMD512-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/AVX512u12/SIMD512-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/AVX512u4/SIMD512-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/AVX512u4/SIMD512-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/AVX512ufull/SIMD512-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/AVX512ufull/SIMD512-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/KeccakP-1600-times8-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/KeccakP-1600-times8-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/KeccakP-1600-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600-times8/SIMD512/KeccakP-1600-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Compact64/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Compact64/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Compact64/KeccakP-1600-compact64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Compact64/KeccakP-1600-compact64.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Inplace32BI/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Inplace32BI/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Inplace32BI/KeccakP-1600-inplace32BI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Inplace32BI/KeccakP-1600-inplace32BI.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized/KeccakP-1600-64.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized/KeccakP-1600-64.macros -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized/KeccakP-1600-unrolling.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized/KeccakP-1600-unrolling.macros -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7a-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7a-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7a-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7a-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u1-32bi-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u1-32bi-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u1-32bi-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u1-32bi-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u2-32bi-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u2-32bi-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u2-32bi-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized32biAsmARM/KeccakP-1600-u2-32bi-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forHaswell/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forHaswell/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forHaswell/KeccakP-1600-opt64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forHaswell/KeccakP-1600-opt64.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forNehalem/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forNehalem/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forNehalem/KeccakP-1600-opt64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forNehalem/KeccakP-1600-opt64.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forSandyBridge/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forSandyBridge/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forSandyBridge/KeccakP-1600-opt64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/CompiledByGCC474forSandyBridge/KeccakP-1600-opt64.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/KeccakP-1600-opt64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/KeccakP-1600-opt64.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/LCu6/KeccakP-1600-opt64-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/LCu6/KeccakP-1600-opt64-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/LCufull/KeccakP-1600-opt64-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/LCufull/KeccakP-1600-opt64-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/LCufullshld/KeccakP-1600-opt64-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/LCufullshld/KeccakP-1600-opt64-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/u6/KeccakP-1600-opt64-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/u6/KeccakP-1600-opt64-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64/ufull/KeccakP-1600-opt64-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64/ufull/KeccakP-1600-opt64-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64AsmARM/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64AsmARM/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Optimized64AsmARM/KeccakP-1600-armv8a-neon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Optimized64AsmARM/KeccakP-1600-armv8a-neon.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX2/KeccakP-1600-AVX2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX2/KeccakP-1600-AVX2.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX2/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX2/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512a/KeccakP-1600-AVX512.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512a/KeccakP-1600-AVX512.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512a/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512a/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/AVX512u12/KeccakP-1600-AVX512-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/AVX512u12/KeccakP-1600-AVX512-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/AVX512u6/KeccakP-1600-AVX512-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/AVX512u6/KeccakP-1600-AVX512-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/AVX512ufull/KeccakP-1600-AVX512-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/AVX512ufull/KeccakP-1600-AVX512-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/KeccakP-1600-AVX512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/KeccakP-1600-AVX512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAVX512c/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmARM/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmARM/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmARM/KeccakP-1600-armv7a-le-neon-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmARM/KeccakP-1600-armv7a-le-neon-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmARM/KeccakP-1600-armv7a-le-neon-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmARM/KeccakP-1600-armv7a-le-neon-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmAVR8/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmAVR8/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmAVR8/KeccakP-1600-avr8-compact.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmAVR8/KeccakP-1600-avr8-compact.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmAVR8/KeccakP-1600-avr8-fast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmAVR8/KeccakP-1600-avr8-fast.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-x86-64-gas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-x86-64-gas.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-x86-64-gas_Apple.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-x86-64-gas_Apple.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-x86-64-shld-gas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedAsmX86-64/KeccakP-1600-x86-64-shld-gas.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/KeccakP-1600-XOP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/KeccakP-1600-XOP.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/u6/KeccakP-1600-XOP-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/u6/KeccakP-1600-XOP-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/ufull/KeccakP-1600-XOP-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/OptimizedXOP/ufull/KeccakP-1600-XOP-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Reference/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Reference/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Reference/KeccakP-1600-reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Reference/KeccakP-1600-reference.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Reference/KeccakP-1600-reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Reference/KeccakP-1600-reference.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Reference32BI/KeccakP-1600-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Reference32BI/KeccakP-1600-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Reference32BI/KeccakP-1600-reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Reference32BI/KeccakP-1600-reference.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-1600/Reference32BI/KeccakP-1600-reference32BI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-1600/Reference32BI/KeccakP-1600-reference32BI.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/Compact/KeccakP-200-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/Compact/KeccakP-200-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/Compact/KeccakP-200-compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/Compact/KeccakP-200-compact.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmARM/KeccakP-200-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmAVR8/KeccakP-200-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmAVR8/KeccakP-200-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmAVR8/KeccakP-200-avr8-fast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/OptimizedAsmAVR8/KeccakP-200-avr8-fast.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/Reference/KeccakP-200-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/Reference/KeccakP-200-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/Reference/KeccakP-200-reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/Reference/KeccakP-200-reference.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-200/Reference/KeccakP-200-reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-200/Reference/KeccakP-200-reference.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmARM/KeccakP-400-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmAVR8/KeccakP-400-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmAVR8/KeccakP-400-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmAVR8/KeccakP-400-avr8-fast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/OptimizedAsmAVR8/KeccakP-400-avr8-fast.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/Reference/KeccakP-400-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/Reference/KeccakP-400-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/Reference/KeccakP-400-reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/Reference/KeccakP-400-reference.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-400/Reference/KeccakP-400-reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-400/Reference/KeccakP-400-reference.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Compact/KeccakP-800-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Compact/KeccakP-800-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Compact/KeccakP-800-compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Compact/KeccakP-800-compact.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-opt32-bis.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-opt32-bis.macros -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-opt32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-opt32.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-opt32.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-opt32.macros -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-unrolling-bis.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-unrolling-bis.macros -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-unrolling.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/KeccakP-800-unrolling.macros -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/LCu2/KeccakP-800-opt32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/LCu2/KeccakP-800-opt32-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/LCufull/KeccakP-800-opt32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/LCufull/KeccakP-800-opt32-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/u2/KeccakP-800-opt32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/u2/KeccakP-800-opt32-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized32/ufull/KeccakP-800-opt32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized32/ufull/KeccakP-800-opt32-config.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized64AsmARM/KeccakP-800-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized64AsmARM/KeccakP-800-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Optimized64AsmARM/KeccakP-800-armv8a-neon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Optimized64AsmARM/KeccakP-800-armv8a-neon.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u1-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u1-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u1-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u1-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7a-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7a-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7a-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7a-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-u2-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-uf-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-uf-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-uf-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmARM/KeccakP-800-uf-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmAVR8/KeccakP-800-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmAVR8/KeccakP-800-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmAVR8/KeccakP-800-avr8-fast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/OptimizedAsmAVR8/KeccakP-800-avr8-fast.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Reference/KeccakP-800-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Reference/KeccakP-800-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Reference/KeccakP-800-reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Reference/KeccakP-800-reference.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/KeccakP-800/Reference/KeccakP-800-reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/KeccakP-800/Reference/KeccakP-800-reference.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/Ket-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/Ket-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/Ket-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/Ket-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetJr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetJr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetSr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetSr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeJr-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeJr-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeJr-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeJr-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeSr-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeSr-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeSr-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedAsmARM/KetjeSr-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/Ket-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/Ket-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/Ket-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/Ket-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/Ket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/Ket.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetJr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetJr.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetJr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetJr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMj.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMj.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMn.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetMn.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetSr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetSr.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/OptimizedLE/KetSr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/OptimizedLE/KetSr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/Ket-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/Ket-common.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/Ket-documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/Ket-documentation.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/Ket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/Ket.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetJr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetJr.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetJr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetJr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMj.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMj.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMn.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetMn.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetSr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetSr.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Ketje/SnP-compliant/KetSr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Ketje/SnP-compliant/KetSr.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times16/FallbackOn1/Xoodoo-times16-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times16/FallbackOn1/Xoodoo-times16-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times16/FallbackOn1/Xoodoo-times16-on1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times16/FallbackOn1/Xoodoo-times16-on1.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times16/SIMD512/Xoodoo-times16-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times16/SIMD512/Xoodoo-times16-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times16/SIMD512/Xoodoo-times16-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times16/SIMD512/Xoodoo-times16-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times4/FallbackOn1/Xoodoo-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times4/FallbackOn1/Xoodoo-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times4/FallbackOn1/Xoodoo-times4-on1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times4/FallbackOn1/Xoodoo-times4-on1.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times4/SIMD128/Xoodoo-times4-SIMD128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times4/SIMD128/Xoodoo-times4-SIMD128.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times4/SIMD128/Xoodoo-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times4/SIMD128/Xoodoo-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times4/SIMD512/Xoodoo-times4-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times4/SIMD512/Xoodoo-times4-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times4/SIMD512/Xoodoo-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times4/SIMD512/Xoodoo-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times8/FallbackOn1/Xoodoo-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times8/FallbackOn1/Xoodoo-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times8/FallbackOn1/Xoodoo-times8-on1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times8/FallbackOn1/Xoodoo-times8-on1.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times8/SIMD256/Xoodoo-times8-SIMD256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times8/SIMD256/Xoodoo-times8-SIMD256.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times8/SIMD256/Xoodoo-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times8/SIMD256/Xoodoo-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times8/SIMD512/Xoodoo-times8-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times8/SIMD512/Xoodoo-times8-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo-times8/SIMD512/Xoodoo-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo-times8/SIMD512/Xoodoo-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/Optimized/Xoodoo-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/Optimized/Xoodoo-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/Optimized/Xoodoo-optimized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/Optimized/Xoodoo-optimized.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-u1-armv6m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-u1-armv6m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-u1-armv6m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-u1-armv6m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-uf-armv7m-le-armcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-uf-armv7m-le-armcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-uf-armv7m-le-gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedAsmARM/Xoodoo-uf-armv7m-le-gcc.s -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD128/Xoodoo-SIMD128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD128/Xoodoo-SIMD128.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD128/Xoodoo-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD128/Xoodoo-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD512/Xoodoo-SIMD512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD512/Xoodoo-SIMD512.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD512/Xoodoo-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/OptimizedSIMD512/Xoodoo-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/Reference/Xoodoo-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/Reference/Xoodoo-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/Reference/Xoodoo-reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/Reference/Xoodoo-reference.c -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/Xoodoo/Xoodoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/Xoodoo/Xoodoo.h -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/common/PlSnP-Fallback.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/common/PlSnP-Fallback.inc -------------------------------------------------------------------------------- /implementation/XKCP/lib/low/common/SnP-Relaned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/lib/low/common/SnP-Relaned.h -------------------------------------------------------------------------------- /implementation/XKCP/support/Build/ExpandProducts.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Build/ExpandProducts.xsl -------------------------------------------------------------------------------- /implementation/XKCP/support/Build/ToGlobalMakefile.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Build/ToGlobalMakefile.xsl -------------------------------------------------------------------------------- /implementation/XKCP/support/Build/ToOneTarget.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Build/ToOneTarget.xsl -------------------------------------------------------------------------------- /implementation/XKCP/support/Build/ToTargetMakefile.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Build/ToTargetMakefile.xsl -------------------------------------------------------------------------------- /implementation/XKCP/support/Build/ToVCXProj.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Build/ToVCXProj.xsl -------------------------------------------------------------------------------- /implementation/XKCP/support/Kernel-PMU/Kernel-pmu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Kernel-PMU/Kernel-pmu.md -------------------------------------------------------------------------------- /implementation/XKCP/support/Kernel-PMU/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Kernel-PMU/Makefile -------------------------------------------------------------------------------- /implementation/XKCP/support/Kernel-PMU/enable_arm_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/support/Kernel-PMU/enable_arm_pmu.c -------------------------------------------------------------------------------- /implementation/XKCP/support/Kernel-PMU/load-module: -------------------------------------------------------------------------------- 1 | sudo insmod ./enable_arm_pmu.ko 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/K12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KangarooTwelve/K12.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/KeccakP-1600-times2-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KangarooTwelve/KeccakP-1600-times2-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/KeccakP-1600-times4-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KangarooTwelve/KeccakP-1600-times4-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/KeccakP-1600-times8-SnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KangarooTwelve/KeccakP-1600-times8-SnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KangarooTwelve/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KangarooTwelve/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KangarooTwelve/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeJr/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeJr/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeJr/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeJr/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeJr/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeJr/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeJr/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMj/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeMj/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMj/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMj/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeMj/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMj/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeMj/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMn/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeMn/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMn/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMn/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeMn/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeMn/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeMn/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeSr/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeSr/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeSr/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeSr/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeSr/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/KetjeSr/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/KetjeSr/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LakeKeyak/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/LakeKeyak/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LakeKeyak/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LakeKeyak/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/LakeKeyak/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LakeKeyak/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/LakeKeyak/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LunarKeyak/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/LunarKeyak/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LunarKeyak/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LunarKeyak/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/LunarKeyak/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/LunarKeyak/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/LunarKeyak/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/OceanKeyak/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/OceanKeyak/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/OceanKeyak/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/OceanKeyak/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/OceanKeyak/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/OceanKeyak/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/OceanKeyak/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/RiverKeyak/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/RiverKeyak/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/RiverKeyak/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/RiverKeyak/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/RiverKeyak/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/RiverKeyak/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/RiverKeyak/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-224/SHA3-224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-224/SHA3-224.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-224/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-224/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-224/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-224/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-224/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-256/SHA3-256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-256/SHA3-256.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-256/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-256/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-256/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-256/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-256/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-384/SHA3-384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-384/SHA3-384.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-384/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-384/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-384/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-384/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-384/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-512/SHA3-512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-512/SHA3-512.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-512/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-512/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-512/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHA3-512/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHA3-512/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE128/SHAKE128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHAKE128/SHAKE128.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE128/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHAKE128/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE128/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE128/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHAKE128/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE256/SHAKE256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHAKE256/SHAKE256.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE256/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHAKE256/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE256/crypto_hash.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_hash.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SHAKE256/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SHAKE256/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SUPERCOP.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SUPERCOP.build -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SeaKeyak/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SeaKeyak/api.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SeaKeyak/crypto_aead.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for crypto_aead.h */ 2 | -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SeaKeyak/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SeaKeyak/encrypt.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/SeaKeyak/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/SeaKeyak/selftest.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/test_crypto_aead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/test_crypto_aead.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/test_crypto_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/test_crypto_aead.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/test_crypto_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/test_crypto_hash.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/SUPERCOP/test_crypto_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/SUPERCOP/test_crypto_hash.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KangarooTwelve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KangarooTwelve.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakDuplexIntermediateValues_r1026c574.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakDuplexIntermediateValues_r1026c574.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakDuplexIntermediateValues_r1027c573.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakDuplexIntermediateValues_r1027c573.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakF-1600-IntermediateValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakF-1600-IntermediateValues.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakF-1600-IntermediateValues32BI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakF-1600-IntermediateValues32BI.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakF-200-IntermediateValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakF-200-IntermediateValues.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakF-400-IntermediateValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakF-400-IntermediateValues.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakF-800-IntermediateValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakF-800-IntermediateValues.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-224.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-384.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-384.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHA3-512.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHAKE128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHAKE128.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHAKE256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_SHAKE256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_r1344c256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KeccakSpongeIntermediateValues_r1344c256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KetjeJr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KetjeJr.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KetjeMj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KetjeMj.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KetjeMn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KetjeMn.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/KetjeSr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/KetjeSr.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr144c256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr144c256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr240c160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr240c160.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr288c512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr288c512.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr40c160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr40c160.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr544c256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr544c256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr640c160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_Keccakr640c160.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-224.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-384.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-384.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHA3-512.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHAKE128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHAKE128.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHAKE256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/TestVectors/ShortMsgKAT_SHAKE256.txt -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/displayIntermediateValues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/displayIntermediateValues.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/displayIntermediateValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/displayIntermediateValues.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/genKAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/genKAT.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/genKAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/genKAT.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/main.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testDuplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testDuplex.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testDuplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testDuplex.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testDuplex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testDuplex.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKangarooTwelve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKangarooTwelve.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKangarooTwelve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKangarooTwelve.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKeccakPRG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKeccakPRG.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKeccakPRG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKeccakPRG.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKeccakPRG.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKeccakPRG.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKetjev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKetjev2.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKetjev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKetjev2.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKetjev2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKetjev2.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKeyakv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKeyakv2.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKeyakv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKeyakv2.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKeyakv2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKeyakv2.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKravatte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKravatte.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKravatte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKravatte.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKravatteModes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKravatteModes.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testKravatteModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testKravatteModes.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testMotorist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testMotorist.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testMotorist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testMotorist.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testMotorist.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testMotorist.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testPerformance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testPerformance.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testPerformance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testPerformance.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testPlSnP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testPlSnP.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testPlSnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testPlSnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testPlSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testPlSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSP800-185.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSP800-185.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSP800-185.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSP800-185.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSnP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSnP.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSponge.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSponge.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testSponge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testSponge.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooMain.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooPerformance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooPerformance.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooPerformance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooPerformance.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooPlSnP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooPlSnP.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooPlSnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooPlSnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooPlSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooPlSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooSnP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooSnP.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooSnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooSnP.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXooSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXooSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXoofff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXoofff.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXoofff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXoofff.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXoofffModes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXoofffModes.c -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/testXoofffModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/testXoofffModes.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timing.h -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timingKeyak.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timingKeyak.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timingPlSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timingPlSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timingSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timingSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timingSponge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timingSponge.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timingXooPlSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timingXooPlSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/tests/UnitTests/timingXooSnP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/tests/UnitTests/timingXooSnP.inc -------------------------------------------------------------------------------- /implementation/XKCP/util/KeccakSum/KeccakSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/util/KeccakSum/KeccakSum.c -------------------------------------------------------------------------------- /implementation/XKCP/util/KeccakSum/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/util/KeccakSum/base64.c -------------------------------------------------------------------------------- /implementation/XKCP/util/KeccakSum/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/XKCP/util/KeccakSum/base64.h -------------------------------------------------------------------------------- /implementation/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/bench.c -------------------------------------------------------------------------------- /implementation/classgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/classgroup.c -------------------------------------------------------------------------------- /implementation/classgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/classgroup.h -------------------------------------------------------------------------------- /implementation/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/constants.h -------------------------------------------------------------------------------- /implementation/csidh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/csidh.c -------------------------------------------------------------------------------- /implementation/csidh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/csidh.h -------------------------------------------------------------------------------- /implementation/csifish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/csifish.c -------------------------------------------------------------------------------- /implementation/csifish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/csifish.h -------------------------------------------------------------------------------- /implementation/disttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/disttest.c -------------------------------------------------------------------------------- /implementation/fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/fp.c -------------------------------------------------------------------------------- /implementation/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/fp.h -------------------------------------------------------------------------------- /implementation/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/main.c -------------------------------------------------------------------------------- /implementation/merkletree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/merkletree.c -------------------------------------------------------------------------------- /implementation/merkletree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/merkletree.h -------------------------------------------------------------------------------- /implementation/mont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/mont.c -------------------------------------------------------------------------------- /implementation/mont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/mont.h -------------------------------------------------------------------------------- /implementation/p512/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/p512/constants.c -------------------------------------------------------------------------------- /implementation/p512/fp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/p512/fp.s -------------------------------------------------------------------------------- /implementation/p512/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/p512/params.h -------------------------------------------------------------------------------- /implementation/p512/uint.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/p512/uint.s -------------------------------------------------------------------------------- /implementation/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/parameters.h -------------------------------------------------------------------------------- /implementation/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/pool.c -------------------------------------------------------------------------------- /implementation/reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/reduce.c -------------------------------------------------------------------------------- /implementation/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/reduce.h -------------------------------------------------------------------------------- /implementation/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/rng.c -------------------------------------------------------------------------------- /implementation/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/rng.h -------------------------------------------------------------------------------- /implementation/supersingular.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/supersingular.sage -------------------------------------------------------------------------------- /implementation/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/test.c -------------------------------------------------------------------------------- /implementation/uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/uint.c -------------------------------------------------------------------------------- /implementation/uint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/implementation/uint.h -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KULeuven-COSIC/CSI-FiSh/HEAD/paper/paper.pdf --------------------------------------------------------------------------------