digest-kangarootwelve 0.3.2 → 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/LICENSE.XKCP +9 -0
- data/README.md +85 -33
- data/Rakefile +77 -4
- data/digest-kangarootwelve.gemspec +25 -316
- data/ext/digest/kangarootwelve/XKCP/lib/common/align.h +33 -0
- data/ext/digest/kangarootwelve/XKCP/lib/common/brg_endian.h +143 -0
- data/ext/digest/kangarootwelve/XKCP/lib/high/KangarooTwelve/KangarooTwelve.c +301 -0
- data/ext/digest/kangarootwelve/XKCP/lib/high/KangarooTwelve/KangarooTwelve.h +97 -0
- data/ext/digest/kangarootwelve/XKCP/lib/high/Keccak/KeccakSponge.c +111 -0
- data/ext/digest/kangarootwelve/XKCP/lib/high/Keccak/KeccakSponge.h +76 -0
- data/ext/digest/kangarootwelve/XKCP/lib/high/Keccak/KeccakSponge.inc +314 -0
- data/ext/digest/kangarootwelve/XKCP/lib/high/common/Phases.h +25 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARM/KeccakP-1600-SnP.h +41 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARM/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s +1175 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARM/KeccakP-1600-u2-32bi-armv6m-le-gcc.s +1339 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARMv7A-NEON/KeccakP-1600-SnP.h +42 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARMv7A-NEON/KeccakP-1600-armv7a-le-neon-gcc.s +831 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVR8/KeccakP-1600-SnP.h +42 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVR8/KeccakP-1600-avr8-fast.s +1121 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX2/KeccakP-1600-AVX2.s +1100 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX2/KeccakP-1600-SnP.h +52 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/C/KeccakP-1600-AVX512.c +623 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/C/KeccakP-1600-SnP.h +47 -0
- data/ext/digest/kangarootwelve/{keccak/skylakex → XKCP/lib/low/KeccakP-1600/AVX512/C/u12}/KeccakP-1600-AVX512-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/KeccakP-1600-AVX512.s +1031 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/KeccakP-1600-SnP.h +53 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/XOP/KeccakP-1600-SnP.h +44 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/XOP/KeccakP-1600-XOP.c +476 -0
- data/ext/digest/kangarootwelve/{keccak/bulldozer → XKCP/lib/low/KeccakP-1600/XOP/ua}/KeccakP-1600-XOP-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros +748 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/common/KeccakP-1600-unrolling.macros +305 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/compact/KeccakP-1600-SnP.h +40 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/compact/KeccakP-1600-compact64.c +420 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-32bits-inplace/KeccakP-1600-SnP.h +43 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-32bits-inplace/KeccakP-1600-inplace32BI.c +1163 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/KeccakP-1600-SnP.h +54 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/KeccakP-1600-opt64.c +565 -0
- data/ext/digest/kangarootwelve/{keccak/generic64lc → XKCP/lib/low/KeccakP-1600/plain-64bits/lcua}/KeccakP-1600-opt64-config.h +0 -0
- data/ext/digest/kangarootwelve/{keccak/sandybridge → XKCP/lib/low/KeccakP-1600/plain-64bits/lcua-shld}/KeccakP-1600-opt64-config.h +0 -0
- data/ext/digest/kangarootwelve/{keccak/generic64 → XKCP/lib/low/KeccakP-1600/plain-64bits/ua}/KeccakP-1600-opt64-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h +44 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference.h +23 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c +625 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h +44 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c +444 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.h +23 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/ARMv7A-NEON/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s +1394 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/ARMv7A-NEON/KeccakP-1600-times2-SnP.h +42 -0
- data/ext/digest/kangarootwelve/{keccak/skylakex → XKCP/lib/low/KeccakP-1600-times2/AVX512/AVX512u12}/SIMD512-2-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/AVX512/KeccakP-1600-times2-SIMD512.c +850 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/AVX512/KeccakP-1600-times2-SnP.h +51 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SIMD128.c +957 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SnP.h +49 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSSE3-u2/SIMD128-config.h +8 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSSE3-ua/SIMD128-config.h +8 -0
- data/ext/digest/kangarootwelve/{keccak/bulldozer → XKCP/lib/low/KeccakP-1600-times2/SIMD128/XOP-ua}/SIMD128-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/fallback-on1/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/fallback-on1/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX2/KeccakP-1600-times4-SIMD256.c +1321 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX2/KeccakP-1600-times4-SnP.h +55 -0
- data/ext/digest/kangarootwelve/{keccak/haswell → XKCP/lib/low/KeccakP-1600-times4/AVX2/u12}/SIMD256-config.h +0 -0
- data/ext/digest/kangarootwelve/{keccak/skylakex → XKCP/lib/low/KeccakP-1600-times4/AVX512/AVX512u12}/SIMD512-4-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX512/KeccakP-1600-times4-SIMD512.c +881 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX512/KeccakP-1600-times4-SnP.h +51 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on1/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on1/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on2/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on2/KeccakP-1600-times4-on2.c +38 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/AVX512/KeccakP-1600-times8-SIMD512.c +1615 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/AVX512/KeccakP-1600-times8-SnP.h +57 -0
- data/ext/digest/kangarootwelve/{keccak/skylakex → XKCP/lib/low/KeccakP-1600-times8/AVX512/u12}/SIMD512-config.h +0 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on1/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on1/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on2/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on2/KeccakP-1600-times8-on2.c +38 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on4/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on4/KeccakP-1600-times8-on4.c +38 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ARM/KeccakP-200-SnP.h +41 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ARM/KeccakP-200-armv6m-le-gcc.s +446 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ARM/KeccakP-200-armv7m-le-gcc.s +427 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/AVR8/KeccakP-200-SnP.h +41 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/AVR8/KeccakP-200-avr8-fast.s +647 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/compact/KeccakP-200-SnP.h +39 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/compact/KeccakP-200-compact.c +190 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ref/KeccakP-200-SnP.h +43 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ref/KeccakP-200-reference.c +416 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ref/KeccakP-200-reference.h +23 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ARM/KeccakP-400-SnP.h +41 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ARM/KeccakP-400-armv6m-le-gcc.s +458 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ARM/KeccakP-400-armv7m-le-gcc.s +458 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/AVR8/KeccakP-400-SnP.h +41 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/AVR8/KeccakP-400-avr8-fast.s +728 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ref/KeccakP-400-SnP.h +43 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ref/KeccakP-400-reference.c +418 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ref/KeccakP-400-reference.h +23 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-SnP.h +42 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-u2-armv6m-le-gcc.s +534 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-u2-armv7a-le-gcc.s +527 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-u2-armv7m-le-gcc.s +523 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/AVR8/KeccakP-800-SnP.h +42 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/AVR8/KeccakP-800-avr8-fast.s +929 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/compact/KeccakP-800-SnP.h +40 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/compact/KeccakP-800-compact.c +244 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-SnP.h +46 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-opt32-bis.macros +184 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-opt32.c +454 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-opt32.macros +459 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-unrolling-bis.macros +83 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-unrolling.macros +88 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/lcu2/KeccakP-800-opt32-config.h +7 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/lcua/KeccakP-800-opt32-config.h +7 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/u2/KeccakP-800-opt32-config.h +7 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/ua/KeccakP-800-opt32-config.h +7 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ref/KeccakP-800-SnP.h +44 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ref/KeccakP-800-reference.c +441 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ref/KeccakP-800-reference.h +23 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/common/PlSnP-Fallback.inc +290 -0
- data/ext/digest/kangarootwelve/XKCP/lib/low/common/SnP-Relaned.h +141 -0
- data/ext/digest/kangarootwelve/XKCP/tests/UnitTests/displayIntermediateValues.c +177 -0
- data/ext/digest/kangarootwelve/XKCP/tests/UnitTests/displayIntermediateValues.h +30 -0
- data/ext/digest/kangarootwelve/ext.c +30 -22
- data/ext/digest/kangarootwelve/extconf.rb +8 -11
- data/ext/digest/kangarootwelve/targets/armv6/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-u2-32bi-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-200-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-400-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakP-800-u2-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/armv6m/ext.link.c → targets/armv6/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/armv6/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-u2-32bi-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-200-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-400-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakP-800-u2-armv6m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv6m/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/armv7a/ext.link.c → targets/armv6m/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/armv6m/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-armv7a-le-neon-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times4-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times8-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakP-800-u2-armv7a-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7a/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/armv7m/ext.link.c → targets/armv7a/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/armv7a/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-inplace-32bi-armv7m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-200-armv7m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-400-armv7m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakP-800-u2-armv7m-le-gcc.S +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv7m/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/armv8a/ext.link.c → targets/armv7m/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/armv7m/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-64.macros +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-opt64-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-opt64.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/armv8a/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/asmx86-64/ext.link.c → targets/armv8a/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/armv8a/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-avr8-fast.S +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-200-avr8-fast.S +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-400-avr8-fast.S +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakP-800-avr8-fast.S +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/avr8/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/asmx86-64shld/ext.link.c → targets/avr8/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/avr8/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-64.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-opt64-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-opt64.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times2-SIMD128.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times4-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times8-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx/SIMD128-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/avr8/ext.link.c → targets/avx/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/avx/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-AVX2.S +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times2-SIMD128.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times4-SIMD256.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times8-on4.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/SIMD128-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/SIMD256-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/bulldozer/ext.link.c → targets/avx2/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/avx2/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-64.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-opt64-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-opt64.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times2-SIMD128.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times4-SIMD256.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times8-on4.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/SIMD128-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/SIMD256-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/compact/ext.link.c → targets/avx2noasm/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/avx2noasm/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-AVX512.S +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times2-SIMD512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times4-SIMD512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times8-SIMD512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/SIMD512-2-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/SIMD512-4-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/SIMD512-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/generic32/ext.link.c → targets/avx512/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/avx512/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-AVX512-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-AVX512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times2-SIMD512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times4-SIMD512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times8-SIMD512.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/SIMD512-2-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/SIMD512-4-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/SIMD512-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/generic32lc/ext.link.c → targets/avx512noasm/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/avx512noasm/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-compact64.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-200-compact.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakP-800-compact.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/compact/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/compact/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/compact/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/generic64/ext.link.c → targets/compact/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/compact/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/config.h +9 -0
- data/ext/digest/kangarootwelve/targets/defs +2 -0
- data/ext/digest/kangarootwelve/targets/generic32/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-inplace32BI.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/generic64lc/ext.link.c → targets/generic32/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/generic32/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-inplace32BI.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/haswell/ext.link.c → targets/generic32lc/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/generic32lc/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-64.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-opt64-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-opt64.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/nehalem/ext.link.c → targets/generic64/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/generic64/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-64.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-opt64-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-opt64.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/reference/ext.link.c → targets/generic64lc/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/generic64lc/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/list +20 -0
- data/ext/digest/kangarootwelve/targets/reference/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-800-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakP-800-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/reference/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/reference/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/config.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference/displayIntermediateValues.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference/displayIntermediateValues.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/reference32bits/ext.link.c → targets/reference/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/reference/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-reference32BI.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times2-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times4-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times8-on1.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-800-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakP-800-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/config.h +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/displayIntermediateValues.c +1 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/displayIntermediateValues.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/sandybridge/ext.link.c → targets/reference32bits/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/reference32bits/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-64.macros +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-opt64-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-opt64.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times2-SIMD128.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times4-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times8-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/SIMD128-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/ssse3/config.h +1 -0
- data/ext/digest/kangarootwelve/{keccak/skylakex/ext.link.c → targets/ssse3/ext.c} +0 -0
- data/ext/digest/kangarootwelve/targets/ssse3/utils.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KangarooTwelve.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KangarooTwelve.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-XOP-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-XOP.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times2-SIMD128.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times2-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times4-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times4-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times8-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times8-on2.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-1600-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-200-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-200-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-200-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-400-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-400-reference.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-400-reference.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-SnP.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32.macros +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-unrolling-bis.macros +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakP-800-unrolling.macros +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakSponge.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakSponge.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/KeccakSponge.inc +1 -0
- data/ext/digest/kangarootwelve/targets/xop/Phases.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/PlSnP-Fallback.inc +1 -0
- data/ext/digest/kangarootwelve/targets/xop/SIMD128-config.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/SnP-Relaned.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/align.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/brg_endian.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/config.h +1 -0
- data/ext/digest/kangarootwelve/targets/xop/ext.c +1 -0
- data/ext/digest/kangarootwelve/targets/xop/utils.h +1 -0
- data/lib/digest/kangarootwelve/version.rb +1 -1
- data/rakelib/alt-install-task.rake +58 -0
- data/test/test.rb +5 -3
- metadata +817 -301
- data/ext/digest/kangarootwelve/keccak/armv6m/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-SnP.h +0 -36
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-u2-32bi-armv6m-le-gcc.s +0 -1334
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv6m/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/armv7a/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-SnP.h +0 -37
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-armv7a-le-neon-gcc.s +0 -826
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s +0 -1245
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times2-SnP.h +0 -38
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times4-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times8-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv7a/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/armv7m/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-SnP.h +0 -36
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s +0 -1170
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv7m/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/armv8a/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-SnP.h +0 -28
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-armv8a-neon.s +0 -537
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/armv8a/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-SnP.h +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-x86-64-gas.s +0 -1190
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/asmx86-64/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-SnP.h +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-x86-64-shld-gas.s +0 -1190
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/avr8/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-SnP.h +0 -37
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-avr8-fast.s +0 -1116
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/avr8/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/bulldozer/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-SnP.h +0 -39
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-XOP.c +0 -473
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times2-SIMD128.c +0 -954
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times2-SnP.h +0 -47
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times4-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times8-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-unrolling.macros +0 -302
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/bulldozer/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/bulldozer/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/common/KangarooTwelve.c +0 -271
- data/ext/digest/kangarootwelve/keccak/common/KangarooTwelve.h +0 -89
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplex-common.h +0 -37
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplex.inc +0 -192
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplexWidth1600.c +0 -34
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplexWidth1600.h +0 -25
- data/ext/digest/kangarootwelve/keccak/common/KeccakSponge-common.h +0 -35
- data/ext/digest/kangarootwelve/keccak/common/KeccakSponge.inc +0 -311
- data/ext/digest/kangarootwelve/keccak/common/KeccakSpongeWidth1600.c +0 -54
- data/ext/digest/kangarootwelve/keccak/common/KeccakSpongeWidth1600.h +0 -31
- data/ext/digest/kangarootwelve/keccak/common/Phases.h +0 -22
- data/ext/digest/kangarootwelve/keccak/common/align.h +0 -32
- data/ext/digest/kangarootwelve/keccak/common/brg_endian.h +0 -142
- data/ext/digest/kangarootwelve/keccak/compact/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/compact/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-SnP.h +0 -35
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-compact64.c +0 -416
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/compact/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/compact/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/compact/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/generic32/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-SnP.h +0 -38
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-inplace32BI.c +0 -1162
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic32/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/generic32/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/generic32lc/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-SnP.h +0 -38
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-inplace32BI.c +0 -1162
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic32lc/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/generic32lc/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/generic64/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-64.macros +0 -2195
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-SnP.h +0 -49
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-opt64.c +0 -541
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-unrolling.macros +0 -302
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic64/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/generic64/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/generic64lc/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-64.macros +0 -2195
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-SnP.h +0 -49
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-opt64.c +0 -541
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-unrolling.macros +0 -302
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/generic64lc/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/generic64lc/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/haswell/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-AVX2.s +0 -993
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-SnP.h +0 -41
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times2-SIMD128.c +0 -954
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times2-SnP.h +0 -47
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times4-SIMD256.c +0 -1303
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times4-SnP.h +0 -53
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times8-on4.c +0 -38
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-unrolling.macros +0 -302
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/haswell/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/haswell/SIMD128-config.h +0 -8
- data/ext/digest/kangarootwelve/keccak/nehalem/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-64.macros +0 -2195
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-SnP.h +0 -49
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-opt64-config.h +0 -7
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-opt64.c +0 -541
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times2-SIMD128.c +0 -954
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times2-SnP.h +0 -47
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times4-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times8-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-unrolling.macros +0 -302
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/nehalem/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/nehalem/SIMD128-config.h +0 -8
- data/ext/digest/kangarootwelve/keccak/nehalem/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/reference/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/reference/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-SnP.h +0 -41
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-reference.c +0 -424
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-reference.h +0 -20
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/reference/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/reference/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/reference/displayIntermediateValues.c +0 -176
- data/ext/digest/kangarootwelve/keccak/reference/displayIntermediateValues.h +0 -29
- data/ext/digest/kangarootwelve/keccak/reference32bits/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-SnP.h +0 -41
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-reference.h +0 -20
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-reference32BI.c +0 -612
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times2-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times2-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times4-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times8-on1.c +0 -37
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/reference32bits/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/reference32bits/displayIntermediateValues.c +0 -176
- data/ext/digest/kangarootwelve/keccak/reference32bits/displayIntermediateValues.h +0 -29
- data/ext/digest/kangarootwelve/keccak/sandybridge/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-64.macros +0 -2195
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-SnP.h +0 -49
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-opt64.c +0 -541
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times2-SIMD128.c +0 -954
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times2-SnP.h +0 -47
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times4-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times4-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times8-SnP.h +0 -45
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times8-on2.c +0 -38
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-unrolling.macros +0 -302
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakSpongeWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/sandybridge/PlSnP-Fallback.inc +0 -287
- data/ext/digest/kangarootwelve/keccak/sandybridge/SIMD128-config.h +0 -8
- data/ext/digest/kangarootwelve/keccak/sandybridge/SnP-Relaned.h +0 -140
- data/ext/digest/kangarootwelve/keccak/skylakex/KangarooTwelve.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakDuplexWidth1600.link.c +0 -1
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-AVX512.c +0 -621
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-SnP.h +0 -42
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times2-SIMD512.c +0 -852
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times2-SnP.h +0 -49
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times4-SIMD512.c +0 -883
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times4-SnP.h +0 -49
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times8-SIMD512.c +0 -1473
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times8-SnP.h +0 -53
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakSpongeWidth1600.link.c +0 -1
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: digest-kangarootwelve
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- konsolebox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -52,7 +52,37 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '5.8'
|
55
|
-
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: nori
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: nokogiri
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: A KangarooTwelve library that utilizes the XKCP package and can be optionally
|
84
|
+
optimized during compile-time based on a target. It produces implementation classes
|
85
|
+
that work on top of Digest::Base and conform with how Digest classes work.
|
56
86
|
email:
|
57
87
|
- konsolebox@gmail.com
|
58
88
|
executables: []
|
@@ -62,310 +92,796 @@ extra_rdoc_files: []
|
|
62
92
|
files:
|
63
93
|
- Gemfile
|
64
94
|
- LICENSE
|
95
|
+
- LICENSE.XKCP
|
65
96
|
- README.md
|
66
97
|
- Rakefile
|
67
98
|
- digest-kangarootwelve.gemspec
|
99
|
+
- ext/digest/kangarootwelve/XKCP/lib/common/align.h
|
100
|
+
- ext/digest/kangarootwelve/XKCP/lib/common/brg_endian.h
|
101
|
+
- ext/digest/kangarootwelve/XKCP/lib/high/KangarooTwelve/KangarooTwelve.c
|
102
|
+
- ext/digest/kangarootwelve/XKCP/lib/high/KangarooTwelve/KangarooTwelve.h
|
103
|
+
- ext/digest/kangarootwelve/XKCP/lib/high/Keccak/KeccakSponge.c
|
104
|
+
- ext/digest/kangarootwelve/XKCP/lib/high/Keccak/KeccakSponge.h
|
105
|
+
- ext/digest/kangarootwelve/XKCP/lib/high/Keccak/KeccakSponge.inc
|
106
|
+
- ext/digest/kangarootwelve/XKCP/lib/high/common/Phases.h
|
107
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/ARMv7A-NEON/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s
|
108
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/ARMv7A-NEON/KeccakP-1600-times2-SnP.h
|
109
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/AVX512/AVX512u12/SIMD512-2-config.h
|
110
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/AVX512/KeccakP-1600-times2-SIMD512.c
|
111
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/AVX512/KeccakP-1600-times2-SnP.h
|
112
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SIMD128.c
|
113
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/KeccakP-1600-times2-SnP.h
|
114
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSSE3-u2/SIMD128-config.h
|
115
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/SSSE3-ua/SIMD128-config.h
|
116
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/SIMD128/XOP-ua/SIMD128-config.h
|
117
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/fallback-on1/KeccakP-1600-times2-SnP.h
|
118
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times2/fallback-on1/KeccakP-1600-times2-on1.c
|
119
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX2/KeccakP-1600-times4-SIMD256.c
|
120
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX2/KeccakP-1600-times4-SnP.h
|
121
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX2/u12/SIMD256-config.h
|
122
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX512/AVX512u12/SIMD512-4-config.h
|
123
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX512/KeccakP-1600-times4-SIMD512.c
|
124
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/AVX512/KeccakP-1600-times4-SnP.h
|
125
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on1/KeccakP-1600-times4-SnP.h
|
126
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on1/KeccakP-1600-times4-on1.c
|
127
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on2/KeccakP-1600-times4-SnP.h
|
128
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times4/fallback-on2/KeccakP-1600-times4-on2.c
|
129
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/AVX512/KeccakP-1600-times8-SIMD512.c
|
130
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/AVX512/KeccakP-1600-times8-SnP.h
|
131
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/AVX512/u12/SIMD512-config.h
|
132
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on1/KeccakP-1600-times8-SnP.h
|
133
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on1/KeccakP-1600-times8-on1.c
|
134
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on2/KeccakP-1600-times8-SnP.h
|
135
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on2/KeccakP-1600-times8-on2.c
|
136
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on4/KeccakP-1600-times8-SnP.h
|
137
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600-times8/fallback-on4/KeccakP-1600-times8-on4.c
|
138
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARM/KeccakP-1600-SnP.h
|
139
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARM/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s
|
140
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARM/KeccakP-1600-u2-32bi-armv6m-le-gcc.s
|
141
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARMv7A-NEON/KeccakP-1600-SnP.h
|
142
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ARMv7A-NEON/KeccakP-1600-armv7a-le-neon-gcc.s
|
143
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVR8/KeccakP-1600-SnP.h
|
144
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVR8/KeccakP-1600-avr8-fast.s
|
145
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX2/KeccakP-1600-AVX2.s
|
146
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX2/KeccakP-1600-SnP.h
|
147
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/C/KeccakP-1600-AVX512.c
|
148
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/C/KeccakP-1600-SnP.h
|
149
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/C/u12/KeccakP-1600-AVX512-config.h
|
150
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/KeccakP-1600-AVX512.s
|
151
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/AVX512/KeccakP-1600-SnP.h
|
152
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/XOP/KeccakP-1600-SnP.h
|
153
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/XOP/KeccakP-1600-XOP.c
|
154
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/XOP/ua/KeccakP-1600-XOP-config.h
|
155
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/common/KeccakP-1600-64.macros
|
156
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/common/KeccakP-1600-unrolling.macros
|
157
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/compact/KeccakP-1600-SnP.h
|
158
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/compact/KeccakP-1600-compact64.c
|
159
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-32bits-inplace/KeccakP-1600-SnP.h
|
160
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-32bits-inplace/KeccakP-1600-inplace32BI.c
|
161
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/KeccakP-1600-SnP.h
|
162
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/KeccakP-1600-opt64.c
|
163
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/lcua-shld/KeccakP-1600-opt64-config.h
|
164
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/lcua/KeccakP-1600-opt64-config.h
|
165
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/plain-64bits/ua/KeccakP-1600-opt64-config.h
|
166
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-SnP.h
|
167
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference.h
|
168
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-32bits/KeccakP-1600-reference32BI.c
|
169
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-SnP.h
|
170
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.c
|
171
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-1600/ref-64bits/KeccakP-1600-reference.h
|
172
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ARM/KeccakP-200-SnP.h
|
173
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ARM/KeccakP-200-armv6m-le-gcc.s
|
174
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ARM/KeccakP-200-armv7m-le-gcc.s
|
175
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/AVR8/KeccakP-200-SnP.h
|
176
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/AVR8/KeccakP-200-avr8-fast.s
|
177
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/compact/KeccakP-200-SnP.h
|
178
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/compact/KeccakP-200-compact.c
|
179
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ref/KeccakP-200-SnP.h
|
180
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ref/KeccakP-200-reference.c
|
181
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-200/ref/KeccakP-200-reference.h
|
182
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ARM/KeccakP-400-SnP.h
|
183
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ARM/KeccakP-400-armv6m-le-gcc.s
|
184
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ARM/KeccakP-400-armv7m-le-gcc.s
|
185
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/AVR8/KeccakP-400-SnP.h
|
186
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/AVR8/KeccakP-400-avr8-fast.s
|
187
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ref/KeccakP-400-SnP.h
|
188
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ref/KeccakP-400-reference.c
|
189
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-400/ref/KeccakP-400-reference.h
|
190
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-SnP.h
|
191
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-u2-armv6m-le-gcc.s
|
192
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-u2-armv7a-le-gcc.s
|
193
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ARM/KeccakP-800-u2-armv7m-le-gcc.s
|
194
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/AVR8/KeccakP-800-SnP.h
|
195
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/AVR8/KeccakP-800-avr8-fast.s
|
196
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/compact/KeccakP-800-SnP.h
|
197
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/compact/KeccakP-800-compact.c
|
198
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-SnP.h
|
199
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-opt32-bis.macros
|
200
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-opt32.c
|
201
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-opt32.macros
|
202
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-unrolling-bis.macros
|
203
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/KeccakP-800-unrolling.macros
|
204
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/lcu2/KeccakP-800-opt32-config.h
|
205
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/lcua/KeccakP-800-opt32-config.h
|
206
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/u2/KeccakP-800-opt32-config.h
|
207
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/plain/ua/KeccakP-800-opt32-config.h
|
208
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ref/KeccakP-800-SnP.h
|
209
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ref/KeccakP-800-reference.c
|
210
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/KeccakP-800/ref/KeccakP-800-reference.h
|
211
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/common/PlSnP-Fallback.inc
|
212
|
+
- ext/digest/kangarootwelve/XKCP/lib/low/common/SnP-Relaned.h
|
213
|
+
- ext/digest/kangarootwelve/XKCP/tests/UnitTests/displayIntermediateValues.c
|
214
|
+
- ext/digest/kangarootwelve/XKCP/tests/UnitTests/displayIntermediateValues.h
|
68
215
|
- ext/digest/kangarootwelve/ext.c
|
69
216
|
- ext/digest/kangarootwelve/extconf.rb
|
70
|
-
- ext/digest/kangarootwelve/
|
71
|
-
- ext/digest/kangarootwelve/
|
72
|
-
- ext/digest/kangarootwelve/
|
73
|
-
- ext/digest/kangarootwelve/
|
74
|
-
- ext/digest/kangarootwelve/
|
75
|
-
- ext/digest/kangarootwelve/
|
76
|
-
- ext/digest/kangarootwelve/
|
77
|
-
- ext/digest/kangarootwelve/
|
78
|
-
- ext/digest/kangarootwelve/
|
79
|
-
- ext/digest/kangarootwelve/
|
80
|
-
- ext/digest/kangarootwelve/
|
81
|
-
- ext/digest/kangarootwelve/
|
82
|
-
- ext/digest/kangarootwelve/
|
83
|
-
- ext/digest/kangarootwelve/
|
84
|
-
- ext/digest/kangarootwelve/
|
85
|
-
- ext/digest/kangarootwelve/
|
86
|
-
- ext/digest/kangarootwelve/
|
87
|
-
- ext/digest/kangarootwelve/
|
88
|
-
- ext/digest/kangarootwelve/
|
89
|
-
- ext/digest/kangarootwelve/
|
90
|
-
- ext/digest/kangarootwelve/
|
91
|
-
- ext/digest/kangarootwelve/
|
92
|
-
- ext/digest/kangarootwelve/
|
93
|
-
- ext/digest/kangarootwelve/
|
94
|
-
- ext/digest/kangarootwelve/
|
95
|
-
- ext/digest/kangarootwelve/
|
96
|
-
- ext/digest/kangarootwelve/
|
97
|
-
- ext/digest/kangarootwelve/
|
98
|
-
- ext/digest/kangarootwelve/
|
99
|
-
- ext/digest/kangarootwelve/
|
100
|
-
- ext/digest/kangarootwelve/
|
101
|
-
- ext/digest/kangarootwelve/
|
102
|
-
- ext/digest/kangarootwelve/
|
103
|
-
- ext/digest/kangarootwelve/
|
104
|
-
- ext/digest/kangarootwelve/
|
105
|
-
- ext/digest/kangarootwelve/
|
106
|
-
- ext/digest/kangarootwelve/
|
107
|
-
- ext/digest/kangarootwelve/
|
108
|
-
- ext/digest/kangarootwelve/
|
109
|
-
- ext/digest/kangarootwelve/
|
110
|
-
- ext/digest/kangarootwelve/
|
111
|
-
- ext/digest/kangarootwelve/
|
112
|
-
- ext/digest/kangarootwelve/
|
113
|
-
- ext/digest/kangarootwelve/
|
114
|
-
- ext/digest/kangarootwelve/
|
115
|
-
- ext/digest/kangarootwelve/
|
116
|
-
- ext/digest/kangarootwelve/
|
117
|
-
- ext/digest/kangarootwelve/
|
118
|
-
- ext/digest/kangarootwelve/
|
119
|
-
- ext/digest/kangarootwelve/
|
120
|
-
- ext/digest/kangarootwelve/
|
121
|
-
- ext/digest/kangarootwelve/
|
122
|
-
- ext/digest/kangarootwelve/
|
123
|
-
- ext/digest/kangarootwelve/
|
124
|
-
- ext/digest/kangarootwelve/
|
125
|
-
- ext/digest/kangarootwelve/
|
126
|
-
- ext/digest/kangarootwelve/
|
127
|
-
- ext/digest/kangarootwelve/
|
128
|
-
- ext/digest/kangarootwelve/
|
129
|
-
- ext/digest/kangarootwelve/
|
130
|
-
- ext/digest/kangarootwelve/
|
131
|
-
- ext/digest/kangarootwelve/
|
132
|
-
- ext/digest/kangarootwelve/
|
133
|
-
- ext/digest/kangarootwelve/
|
134
|
-
- ext/digest/kangarootwelve/
|
135
|
-
- ext/digest/kangarootwelve/
|
136
|
-
- ext/digest/kangarootwelve/
|
137
|
-
- ext/digest/kangarootwelve/
|
138
|
-
- ext/digest/kangarootwelve/
|
139
|
-
- ext/digest/kangarootwelve/
|
140
|
-
- ext/digest/kangarootwelve/
|
141
|
-
- ext/digest/kangarootwelve/
|
142
|
-
- ext/digest/kangarootwelve/
|
143
|
-
- ext/digest/kangarootwelve/
|
144
|
-
- ext/digest/kangarootwelve/
|
145
|
-
- ext/digest/kangarootwelve/
|
146
|
-
- ext/digest/kangarootwelve/
|
147
|
-
- ext/digest/kangarootwelve/
|
148
|
-
- ext/digest/kangarootwelve/
|
149
|
-
- ext/digest/kangarootwelve/
|
150
|
-
- ext/digest/kangarootwelve/
|
151
|
-
- ext/digest/kangarootwelve/
|
152
|
-
- ext/digest/kangarootwelve/
|
153
|
-
- ext/digest/kangarootwelve/
|
154
|
-
- ext/digest/kangarootwelve/
|
155
|
-
- ext/digest/kangarootwelve/
|
156
|
-
- ext/digest/kangarootwelve/
|
157
|
-
- ext/digest/kangarootwelve/
|
158
|
-
- ext/digest/kangarootwelve/
|
159
|
-
- ext/digest/kangarootwelve/
|
160
|
-
- ext/digest/kangarootwelve/
|
161
|
-
- ext/digest/kangarootwelve/
|
162
|
-
- ext/digest/kangarootwelve/
|
163
|
-
- ext/digest/kangarootwelve/
|
164
|
-
- ext/digest/kangarootwelve/
|
165
|
-
- ext/digest/kangarootwelve/
|
166
|
-
- ext/digest/kangarootwelve/
|
167
|
-
- ext/digest/kangarootwelve/
|
168
|
-
- ext/digest/kangarootwelve/
|
169
|
-
- ext/digest/kangarootwelve/
|
170
|
-
- ext/digest/kangarootwelve/
|
171
|
-
- ext/digest/kangarootwelve/
|
172
|
-
- ext/digest/kangarootwelve/
|
173
|
-
- ext/digest/kangarootwelve/
|
174
|
-
- ext/digest/kangarootwelve/
|
175
|
-
- ext/digest/kangarootwelve/
|
176
|
-
- ext/digest/kangarootwelve/
|
177
|
-
- ext/digest/kangarootwelve/
|
178
|
-
- ext/digest/kangarootwelve/
|
179
|
-
- ext/digest/kangarootwelve/
|
180
|
-
- ext/digest/kangarootwelve/
|
181
|
-
- ext/digest/kangarootwelve/
|
182
|
-
- ext/digest/kangarootwelve/
|
183
|
-
- ext/digest/kangarootwelve/
|
184
|
-
- ext/digest/kangarootwelve/
|
185
|
-
- ext/digest/kangarootwelve/
|
186
|
-
- ext/digest/kangarootwelve/
|
187
|
-
- ext/digest/kangarootwelve/
|
188
|
-
- ext/digest/kangarootwelve/
|
189
|
-
- ext/digest/kangarootwelve/
|
190
|
-
- ext/digest/kangarootwelve/
|
191
|
-
- ext/digest/kangarootwelve/
|
192
|
-
- ext/digest/kangarootwelve/
|
193
|
-
- ext/digest/kangarootwelve/
|
194
|
-
- ext/digest/kangarootwelve/
|
195
|
-
- ext/digest/kangarootwelve/
|
196
|
-
- ext/digest/kangarootwelve/
|
197
|
-
- ext/digest/kangarootwelve/
|
198
|
-
- ext/digest/kangarootwelve/
|
199
|
-
- ext/digest/kangarootwelve/
|
200
|
-
- ext/digest/kangarootwelve/
|
201
|
-
- ext/digest/kangarootwelve/
|
202
|
-
- ext/digest/kangarootwelve/
|
203
|
-
- ext/digest/kangarootwelve/
|
204
|
-
- ext/digest/kangarootwelve/
|
205
|
-
- ext/digest/kangarootwelve/
|
206
|
-
- ext/digest/kangarootwelve/
|
207
|
-
- ext/digest/kangarootwelve/
|
208
|
-
- ext/digest/kangarootwelve/
|
209
|
-
- ext/digest/kangarootwelve/
|
210
|
-
- ext/digest/kangarootwelve/
|
211
|
-
- ext/digest/kangarootwelve/
|
212
|
-
- ext/digest/kangarootwelve/
|
213
|
-
- ext/digest/kangarootwelve/
|
214
|
-
- ext/digest/kangarootwelve/
|
215
|
-
- ext/digest/kangarootwelve/
|
216
|
-
- ext/digest/kangarootwelve/
|
217
|
-
- ext/digest/kangarootwelve/
|
218
|
-
- ext/digest/kangarootwelve/
|
219
|
-
- ext/digest/kangarootwelve/
|
220
|
-
- ext/digest/kangarootwelve/
|
221
|
-
- ext/digest/kangarootwelve/
|
222
|
-
- ext/digest/kangarootwelve/
|
223
|
-
- ext/digest/kangarootwelve/
|
224
|
-
- ext/digest/kangarootwelve/
|
225
|
-
- ext/digest/kangarootwelve/
|
226
|
-
- ext/digest/kangarootwelve/
|
227
|
-
- ext/digest/kangarootwelve/
|
228
|
-
- ext/digest/kangarootwelve/
|
229
|
-
- ext/digest/kangarootwelve/
|
230
|
-
- ext/digest/kangarootwelve/
|
231
|
-
- ext/digest/kangarootwelve/
|
232
|
-
- ext/digest/kangarootwelve/
|
233
|
-
- ext/digest/kangarootwelve/
|
234
|
-
- ext/digest/kangarootwelve/
|
235
|
-
- ext/digest/kangarootwelve/
|
236
|
-
- ext/digest/kangarootwelve/
|
237
|
-
- ext/digest/kangarootwelve/
|
238
|
-
- ext/digest/kangarootwelve/
|
239
|
-
- ext/digest/kangarootwelve/
|
240
|
-
- ext/digest/kangarootwelve/
|
241
|
-
- ext/digest/kangarootwelve/
|
242
|
-
- ext/digest/kangarootwelve/
|
243
|
-
- ext/digest/kangarootwelve/
|
244
|
-
- ext/digest/kangarootwelve/
|
245
|
-
- ext/digest/kangarootwelve/
|
246
|
-
- ext/digest/kangarootwelve/
|
247
|
-
- ext/digest/kangarootwelve/
|
248
|
-
- ext/digest/kangarootwelve/
|
249
|
-
- ext/digest/kangarootwelve/
|
250
|
-
- ext/digest/kangarootwelve/
|
251
|
-
- ext/digest/kangarootwelve/
|
252
|
-
- ext/digest/kangarootwelve/
|
253
|
-
- ext/digest/kangarootwelve/
|
254
|
-
- ext/digest/kangarootwelve/
|
255
|
-
- ext/digest/kangarootwelve/
|
256
|
-
- ext/digest/kangarootwelve/
|
257
|
-
- ext/digest/kangarootwelve/
|
258
|
-
- ext/digest/kangarootwelve/
|
259
|
-
- ext/digest/kangarootwelve/
|
260
|
-
- ext/digest/kangarootwelve/
|
261
|
-
- ext/digest/kangarootwelve/
|
262
|
-
- ext/digest/kangarootwelve/
|
263
|
-
- ext/digest/kangarootwelve/
|
264
|
-
- ext/digest/kangarootwelve/
|
265
|
-
- ext/digest/kangarootwelve/
|
266
|
-
- ext/digest/kangarootwelve/
|
267
|
-
- ext/digest/kangarootwelve/
|
268
|
-
- ext/digest/kangarootwelve/
|
269
|
-
- ext/digest/kangarootwelve/
|
270
|
-
- ext/digest/kangarootwelve/
|
271
|
-
- ext/digest/kangarootwelve/
|
272
|
-
- ext/digest/kangarootwelve/
|
273
|
-
- ext/digest/kangarootwelve/
|
274
|
-
- ext/digest/kangarootwelve/
|
275
|
-
- ext/digest/kangarootwelve/
|
276
|
-
- ext/digest/kangarootwelve/
|
277
|
-
- ext/digest/kangarootwelve/
|
278
|
-
- ext/digest/kangarootwelve/
|
279
|
-
- ext/digest/kangarootwelve/
|
280
|
-
- ext/digest/kangarootwelve/
|
281
|
-
- ext/digest/kangarootwelve/
|
282
|
-
- ext/digest/kangarootwelve/
|
283
|
-
- ext/digest/kangarootwelve/
|
284
|
-
- ext/digest/kangarootwelve/
|
285
|
-
- ext/digest/kangarootwelve/
|
286
|
-
- ext/digest/kangarootwelve/
|
287
|
-
- ext/digest/kangarootwelve/
|
288
|
-
- ext/digest/kangarootwelve/
|
289
|
-
- ext/digest/kangarootwelve/
|
290
|
-
- ext/digest/kangarootwelve/
|
291
|
-
- ext/digest/kangarootwelve/
|
292
|
-
- ext/digest/kangarootwelve/
|
293
|
-
- ext/digest/kangarootwelve/
|
294
|
-
- ext/digest/kangarootwelve/
|
295
|
-
- ext/digest/kangarootwelve/
|
296
|
-
- ext/digest/kangarootwelve/
|
297
|
-
- ext/digest/kangarootwelve/
|
298
|
-
- ext/digest/kangarootwelve/
|
299
|
-
- ext/digest/kangarootwelve/
|
300
|
-
- ext/digest/kangarootwelve/
|
301
|
-
- ext/digest/kangarootwelve/
|
302
|
-
- ext/digest/kangarootwelve/
|
303
|
-
- ext/digest/kangarootwelve/
|
304
|
-
- ext/digest/kangarootwelve/
|
305
|
-
- ext/digest/kangarootwelve/
|
306
|
-
- ext/digest/kangarootwelve/
|
307
|
-
- ext/digest/kangarootwelve/
|
308
|
-
- ext/digest/kangarootwelve/
|
309
|
-
- ext/digest/kangarootwelve/
|
310
|
-
- ext/digest/kangarootwelve/
|
311
|
-
- ext/digest/kangarootwelve/
|
312
|
-
- ext/digest/kangarootwelve/
|
313
|
-
- ext/digest/kangarootwelve/
|
314
|
-
- ext/digest/kangarootwelve/
|
315
|
-
- ext/digest/kangarootwelve/
|
316
|
-
- ext/digest/kangarootwelve/
|
317
|
-
- ext/digest/kangarootwelve/
|
318
|
-
- ext/digest/kangarootwelve/
|
319
|
-
- ext/digest/kangarootwelve/
|
320
|
-
- ext/digest/kangarootwelve/
|
321
|
-
- ext/digest/kangarootwelve/
|
322
|
-
- ext/digest/kangarootwelve/
|
323
|
-
- ext/digest/kangarootwelve/
|
324
|
-
- ext/digest/kangarootwelve/
|
325
|
-
- ext/digest/kangarootwelve/
|
326
|
-
- ext/digest/kangarootwelve/
|
327
|
-
- ext/digest/kangarootwelve/
|
328
|
-
- ext/digest/kangarootwelve/
|
329
|
-
- ext/digest/kangarootwelve/
|
330
|
-
- ext/digest/kangarootwelve/
|
331
|
-
- ext/digest/kangarootwelve/
|
332
|
-
- ext/digest/kangarootwelve/
|
333
|
-
- ext/digest/kangarootwelve/
|
334
|
-
- ext/digest/kangarootwelve/
|
335
|
-
- ext/digest/kangarootwelve/
|
336
|
-
- ext/digest/kangarootwelve/
|
337
|
-
- ext/digest/kangarootwelve/
|
338
|
-
- ext/digest/kangarootwelve/
|
339
|
-
- ext/digest/kangarootwelve/
|
340
|
-
- ext/digest/kangarootwelve/
|
341
|
-
- ext/digest/kangarootwelve/
|
342
|
-
- ext/digest/kangarootwelve/
|
343
|
-
- ext/digest/kangarootwelve/
|
344
|
-
- ext/digest/kangarootwelve/
|
345
|
-
- ext/digest/kangarootwelve/
|
346
|
-
- ext/digest/kangarootwelve/
|
347
|
-
- ext/digest/kangarootwelve/
|
348
|
-
- ext/digest/kangarootwelve/
|
349
|
-
- ext/digest/kangarootwelve/
|
350
|
-
- ext/digest/kangarootwelve/
|
351
|
-
- ext/digest/kangarootwelve/
|
352
|
-
- ext/digest/kangarootwelve/
|
353
|
-
- ext/digest/kangarootwelve/
|
354
|
-
- ext/digest/kangarootwelve/
|
355
|
-
- ext/digest/kangarootwelve/
|
356
|
-
- ext/digest/kangarootwelve/
|
357
|
-
- ext/digest/kangarootwelve/
|
358
|
-
- ext/digest/kangarootwelve/
|
359
|
-
- ext/digest/kangarootwelve/
|
360
|
-
- ext/digest/kangarootwelve/
|
361
|
-
- ext/digest/kangarootwelve/
|
362
|
-
- ext/digest/kangarootwelve/
|
363
|
-
- ext/digest/kangarootwelve/
|
364
|
-
- ext/digest/kangarootwelve/
|
365
|
-
- ext/digest/kangarootwelve/
|
366
|
-
- ext/digest/kangarootwelve/
|
217
|
+
- ext/digest/kangarootwelve/targets/armv6/KangarooTwelve.c
|
218
|
+
- ext/digest/kangarootwelve/targets/armv6/KangarooTwelve.h
|
219
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-SnP.h
|
220
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times2-SnP.h
|
221
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times2-on1.c
|
222
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times4-SnP.h
|
223
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times4-on1.c
|
224
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times8-SnP.h
|
225
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-times8-on1.c
|
226
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-1600-u2-32bi-armv6m-le-gcc.S
|
227
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-200-SnP.h
|
228
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-200-armv6m-le-gcc.S
|
229
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-400-SnP.h
|
230
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-400-armv6m-le-gcc.S
|
231
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-800-SnP.h
|
232
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakP-800-u2-armv6m-le-gcc.S
|
233
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakSponge.c
|
234
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakSponge.h
|
235
|
+
- ext/digest/kangarootwelve/targets/armv6/KeccakSponge.inc
|
236
|
+
- ext/digest/kangarootwelve/targets/armv6/Phases.h
|
237
|
+
- ext/digest/kangarootwelve/targets/armv6/PlSnP-Fallback.inc
|
238
|
+
- ext/digest/kangarootwelve/targets/armv6/align.h
|
239
|
+
- ext/digest/kangarootwelve/targets/armv6/brg_endian.h
|
240
|
+
- ext/digest/kangarootwelve/targets/armv6/config.h
|
241
|
+
- ext/digest/kangarootwelve/targets/armv6/ext.c
|
242
|
+
- ext/digest/kangarootwelve/targets/armv6/utils.h
|
243
|
+
- ext/digest/kangarootwelve/targets/armv6m/KangarooTwelve.c
|
244
|
+
- ext/digest/kangarootwelve/targets/armv6m/KangarooTwelve.h
|
245
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-SnP.h
|
246
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times2-SnP.h
|
247
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times2-on1.c
|
248
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times4-SnP.h
|
249
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times4-on1.c
|
250
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times8-SnP.h
|
251
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-times8-on1.c
|
252
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-1600-u2-32bi-armv6m-le-gcc.S
|
253
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-200-SnP.h
|
254
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-200-armv6m-le-gcc.S
|
255
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-400-SnP.h
|
256
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-400-armv6m-le-gcc.S
|
257
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-800-SnP.h
|
258
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakP-800-u2-armv6m-le-gcc.S
|
259
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakSponge.c
|
260
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakSponge.h
|
261
|
+
- ext/digest/kangarootwelve/targets/armv6m/KeccakSponge.inc
|
262
|
+
- ext/digest/kangarootwelve/targets/armv6m/Phases.h
|
263
|
+
- ext/digest/kangarootwelve/targets/armv6m/PlSnP-Fallback.inc
|
264
|
+
- ext/digest/kangarootwelve/targets/armv6m/align.h
|
265
|
+
- ext/digest/kangarootwelve/targets/armv6m/brg_endian.h
|
266
|
+
- ext/digest/kangarootwelve/targets/armv6m/config.h
|
267
|
+
- ext/digest/kangarootwelve/targets/armv6m/ext.c
|
268
|
+
- ext/digest/kangarootwelve/targets/armv6m/utils.h
|
269
|
+
- ext/digest/kangarootwelve/targets/armv7a/KangarooTwelve.c
|
270
|
+
- ext/digest/kangarootwelve/targets/armv7a/KangarooTwelve.h
|
271
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-SnP.h
|
272
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-armv7a-le-neon-gcc.S
|
273
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.S
|
274
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times2-SnP.h
|
275
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times4-SnP.h
|
276
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times4-on2.c
|
277
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times8-SnP.h
|
278
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-1600-times8-on2.c
|
279
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-200-SnP.h
|
280
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-200-reference.c
|
281
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-200-reference.h
|
282
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-400-SnP.h
|
283
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-400-reference.c
|
284
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-400-reference.h
|
285
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-800-SnP.h
|
286
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakP-800-u2-armv7a-le-gcc.S
|
287
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakSponge.c
|
288
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakSponge.h
|
289
|
+
- ext/digest/kangarootwelve/targets/armv7a/KeccakSponge.inc
|
290
|
+
- ext/digest/kangarootwelve/targets/armv7a/Phases.h
|
291
|
+
- ext/digest/kangarootwelve/targets/armv7a/PlSnP-Fallback.inc
|
292
|
+
- ext/digest/kangarootwelve/targets/armv7a/align.h
|
293
|
+
- ext/digest/kangarootwelve/targets/armv7a/brg_endian.h
|
294
|
+
- ext/digest/kangarootwelve/targets/armv7a/config.h
|
295
|
+
- ext/digest/kangarootwelve/targets/armv7a/ext.c
|
296
|
+
- ext/digest/kangarootwelve/targets/armv7a/utils.h
|
297
|
+
- ext/digest/kangarootwelve/targets/armv7m/KangarooTwelve.c
|
298
|
+
- ext/digest/kangarootwelve/targets/armv7m/KangarooTwelve.h
|
299
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-SnP.h
|
300
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-inplace-32bi-armv7m-le-gcc.S
|
301
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times2-SnP.h
|
302
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times2-on1.c
|
303
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times4-SnP.h
|
304
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times4-on1.c
|
305
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times8-SnP.h
|
306
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-1600-times8-on1.c
|
307
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-200-SnP.h
|
308
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-200-armv7m-le-gcc.S
|
309
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-400-SnP.h
|
310
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-400-armv7m-le-gcc.S
|
311
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-800-SnP.h
|
312
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakP-800-u2-armv7m-le-gcc.S
|
313
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakSponge.c
|
314
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakSponge.h
|
315
|
+
- ext/digest/kangarootwelve/targets/armv7m/KeccakSponge.inc
|
316
|
+
- ext/digest/kangarootwelve/targets/armv7m/Phases.h
|
317
|
+
- ext/digest/kangarootwelve/targets/armv7m/PlSnP-Fallback.inc
|
318
|
+
- ext/digest/kangarootwelve/targets/armv7m/align.h
|
319
|
+
- ext/digest/kangarootwelve/targets/armv7m/brg_endian.h
|
320
|
+
- ext/digest/kangarootwelve/targets/armv7m/config.h
|
321
|
+
- ext/digest/kangarootwelve/targets/armv7m/ext.c
|
322
|
+
- ext/digest/kangarootwelve/targets/armv7m/utils.h
|
323
|
+
- ext/digest/kangarootwelve/targets/armv8a/KangarooTwelve.c
|
324
|
+
- ext/digest/kangarootwelve/targets/armv8a/KangarooTwelve.h
|
325
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-64.macros
|
326
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-SnP.h
|
327
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-opt64-config.h
|
328
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-opt64.c
|
329
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times2-SnP.h
|
330
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times2-on1.c
|
331
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times4-SnP.h
|
332
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times4-on1.c
|
333
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times8-SnP.h
|
334
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-times8-on1.c
|
335
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-1600-unrolling.macros
|
336
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-200-SnP.h
|
337
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-200-reference.c
|
338
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-200-reference.h
|
339
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-400-SnP.h
|
340
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-400-reference.c
|
341
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-400-reference.h
|
342
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-SnP.h
|
343
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32-bis.macros
|
344
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32-config.h
|
345
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32.c
|
346
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-opt32.macros
|
347
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-unrolling-bis.macros
|
348
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakP-800-unrolling.macros
|
349
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakSponge.c
|
350
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakSponge.h
|
351
|
+
- ext/digest/kangarootwelve/targets/armv8a/KeccakSponge.inc
|
352
|
+
- ext/digest/kangarootwelve/targets/armv8a/Phases.h
|
353
|
+
- ext/digest/kangarootwelve/targets/armv8a/PlSnP-Fallback.inc
|
354
|
+
- ext/digest/kangarootwelve/targets/armv8a/SnP-Relaned.h
|
355
|
+
- ext/digest/kangarootwelve/targets/armv8a/align.h
|
356
|
+
- ext/digest/kangarootwelve/targets/armv8a/brg_endian.h
|
357
|
+
- ext/digest/kangarootwelve/targets/armv8a/config.h
|
358
|
+
- ext/digest/kangarootwelve/targets/armv8a/ext.c
|
359
|
+
- ext/digest/kangarootwelve/targets/armv8a/utils.h
|
360
|
+
- ext/digest/kangarootwelve/targets/avr8/KangarooTwelve.c
|
361
|
+
- ext/digest/kangarootwelve/targets/avr8/KangarooTwelve.h
|
362
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-SnP.h
|
363
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-avr8-fast.S
|
364
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times2-SnP.h
|
365
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times2-on1.c
|
366
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times4-SnP.h
|
367
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times4-on1.c
|
368
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times8-SnP.h
|
369
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-1600-times8-on1.c
|
370
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-200-SnP.h
|
371
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-200-avr8-fast.S
|
372
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-400-SnP.h
|
373
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-400-avr8-fast.S
|
374
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-800-SnP.h
|
375
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakP-800-avr8-fast.S
|
376
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakSponge.c
|
377
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakSponge.h
|
378
|
+
- ext/digest/kangarootwelve/targets/avr8/KeccakSponge.inc
|
379
|
+
- ext/digest/kangarootwelve/targets/avr8/Phases.h
|
380
|
+
- ext/digest/kangarootwelve/targets/avr8/PlSnP-Fallback.inc
|
381
|
+
- ext/digest/kangarootwelve/targets/avr8/align.h
|
382
|
+
- ext/digest/kangarootwelve/targets/avr8/brg_endian.h
|
383
|
+
- ext/digest/kangarootwelve/targets/avr8/config.h
|
384
|
+
- ext/digest/kangarootwelve/targets/avr8/ext.c
|
385
|
+
- ext/digest/kangarootwelve/targets/avr8/utils.h
|
386
|
+
- ext/digest/kangarootwelve/targets/avx/KangarooTwelve.c
|
387
|
+
- ext/digest/kangarootwelve/targets/avx/KangarooTwelve.h
|
388
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-64.macros
|
389
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-SnP.h
|
390
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-opt64-config.h
|
391
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-opt64.c
|
392
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times2-SIMD128.c
|
393
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times2-SnP.h
|
394
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times4-SnP.h
|
395
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times4-on2.c
|
396
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times8-SnP.h
|
397
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-times8-on2.c
|
398
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-1600-unrolling.macros
|
399
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-200-SnP.h
|
400
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-200-reference.c
|
401
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-200-reference.h
|
402
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-400-SnP.h
|
403
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-400-reference.c
|
404
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-400-reference.h
|
405
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-SnP.h
|
406
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32-bis.macros
|
407
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32-config.h
|
408
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32.c
|
409
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-opt32.macros
|
410
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-unrolling-bis.macros
|
411
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakP-800-unrolling.macros
|
412
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakSponge.c
|
413
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakSponge.h
|
414
|
+
- ext/digest/kangarootwelve/targets/avx/KeccakSponge.inc
|
415
|
+
- ext/digest/kangarootwelve/targets/avx/Phases.h
|
416
|
+
- ext/digest/kangarootwelve/targets/avx/PlSnP-Fallback.inc
|
417
|
+
- ext/digest/kangarootwelve/targets/avx/SIMD128-config.h
|
418
|
+
- ext/digest/kangarootwelve/targets/avx/SnP-Relaned.h
|
419
|
+
- ext/digest/kangarootwelve/targets/avx/align.h
|
420
|
+
- ext/digest/kangarootwelve/targets/avx/brg_endian.h
|
421
|
+
- ext/digest/kangarootwelve/targets/avx/config.h
|
422
|
+
- ext/digest/kangarootwelve/targets/avx/ext.c
|
423
|
+
- ext/digest/kangarootwelve/targets/avx/utils.h
|
424
|
+
- ext/digest/kangarootwelve/targets/avx2/KangarooTwelve.c
|
425
|
+
- ext/digest/kangarootwelve/targets/avx2/KangarooTwelve.h
|
426
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-AVX2.S
|
427
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-SnP.h
|
428
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times2-SIMD128.c
|
429
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times2-SnP.h
|
430
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times4-SIMD256.c
|
431
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times4-SnP.h
|
432
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times8-SnP.h
|
433
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-times8-on4.c
|
434
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-1600-unrolling.macros
|
435
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-200-SnP.h
|
436
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-200-reference.c
|
437
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-200-reference.h
|
438
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-400-SnP.h
|
439
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-400-reference.c
|
440
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-400-reference.h
|
441
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-SnP.h
|
442
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32-bis.macros
|
443
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32-config.h
|
444
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32.c
|
445
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-opt32.macros
|
446
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-unrolling-bis.macros
|
447
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakP-800-unrolling.macros
|
448
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakSponge.c
|
449
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakSponge.h
|
450
|
+
- ext/digest/kangarootwelve/targets/avx2/KeccakSponge.inc
|
451
|
+
- ext/digest/kangarootwelve/targets/avx2/Phases.h
|
452
|
+
- ext/digest/kangarootwelve/targets/avx2/PlSnP-Fallback.inc
|
453
|
+
- ext/digest/kangarootwelve/targets/avx2/SIMD128-config.h
|
454
|
+
- ext/digest/kangarootwelve/targets/avx2/SIMD256-config.h
|
455
|
+
- ext/digest/kangarootwelve/targets/avx2/align.h
|
456
|
+
- ext/digest/kangarootwelve/targets/avx2/brg_endian.h
|
457
|
+
- ext/digest/kangarootwelve/targets/avx2/config.h
|
458
|
+
- ext/digest/kangarootwelve/targets/avx2/ext.c
|
459
|
+
- ext/digest/kangarootwelve/targets/avx2/utils.h
|
460
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KangarooTwelve.c
|
461
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KangarooTwelve.h
|
462
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-64.macros
|
463
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-SnP.h
|
464
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-opt64-config.h
|
465
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-opt64.c
|
466
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times2-SIMD128.c
|
467
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times2-SnP.h
|
468
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times4-SIMD256.c
|
469
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times4-SnP.h
|
470
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times8-SnP.h
|
471
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-times8-on4.c
|
472
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-1600-unrolling.macros
|
473
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-200-SnP.h
|
474
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-200-reference.c
|
475
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-200-reference.h
|
476
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-400-SnP.h
|
477
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-400-reference.c
|
478
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-400-reference.h
|
479
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-SnP.h
|
480
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32-bis.macros
|
481
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32-config.h
|
482
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32.c
|
483
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-opt32.macros
|
484
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-unrolling-bis.macros
|
485
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakP-800-unrolling.macros
|
486
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakSponge.c
|
487
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakSponge.h
|
488
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/KeccakSponge.inc
|
489
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/Phases.h
|
490
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/PlSnP-Fallback.inc
|
491
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/SIMD128-config.h
|
492
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/SIMD256-config.h
|
493
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/SnP-Relaned.h
|
494
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/align.h
|
495
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/brg_endian.h
|
496
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/config.h
|
497
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/ext.c
|
498
|
+
- ext/digest/kangarootwelve/targets/avx2noasm/utils.h
|
499
|
+
- ext/digest/kangarootwelve/targets/avx512/KangarooTwelve.c
|
500
|
+
- ext/digest/kangarootwelve/targets/avx512/KangarooTwelve.h
|
501
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-AVX512.S
|
502
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-SnP.h
|
503
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times2-SIMD512.c
|
504
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times2-SnP.h
|
505
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times4-SIMD512.c
|
506
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times4-SnP.h
|
507
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times8-SIMD512.c
|
508
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-1600-times8-SnP.h
|
509
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-200-SnP.h
|
510
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-200-reference.c
|
511
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-200-reference.h
|
512
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-400-SnP.h
|
513
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-400-reference.c
|
514
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-400-reference.h
|
515
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-SnP.h
|
516
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32-bis.macros
|
517
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32-config.h
|
518
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32.c
|
519
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-opt32.macros
|
520
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-unrolling-bis.macros
|
521
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakP-800-unrolling.macros
|
522
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakSponge.c
|
523
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakSponge.h
|
524
|
+
- ext/digest/kangarootwelve/targets/avx512/KeccakSponge.inc
|
525
|
+
- ext/digest/kangarootwelve/targets/avx512/Phases.h
|
526
|
+
- ext/digest/kangarootwelve/targets/avx512/SIMD512-2-config.h
|
527
|
+
- ext/digest/kangarootwelve/targets/avx512/SIMD512-4-config.h
|
528
|
+
- ext/digest/kangarootwelve/targets/avx512/SIMD512-config.h
|
529
|
+
- ext/digest/kangarootwelve/targets/avx512/align.h
|
530
|
+
- ext/digest/kangarootwelve/targets/avx512/brg_endian.h
|
531
|
+
- ext/digest/kangarootwelve/targets/avx512/config.h
|
532
|
+
- ext/digest/kangarootwelve/targets/avx512/ext.c
|
533
|
+
- ext/digest/kangarootwelve/targets/avx512/utils.h
|
534
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KangarooTwelve.c
|
535
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KangarooTwelve.h
|
536
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-AVX512-config.h
|
537
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-AVX512.c
|
538
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-SnP.h
|
539
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times2-SIMD512.c
|
540
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times2-SnP.h
|
541
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times4-SIMD512.c
|
542
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times4-SnP.h
|
543
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times8-SIMD512.c
|
544
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-1600-times8-SnP.h
|
545
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-200-SnP.h
|
546
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-200-reference.c
|
547
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-200-reference.h
|
548
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-400-SnP.h
|
549
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-400-reference.c
|
550
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-400-reference.h
|
551
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-SnP.h
|
552
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32-bis.macros
|
553
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32-config.h
|
554
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32.c
|
555
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-opt32.macros
|
556
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-unrolling-bis.macros
|
557
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakP-800-unrolling.macros
|
558
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakSponge.c
|
559
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakSponge.h
|
560
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/KeccakSponge.inc
|
561
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/Phases.h
|
562
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/SIMD512-2-config.h
|
563
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/SIMD512-4-config.h
|
564
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/SIMD512-config.h
|
565
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/align.h
|
566
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/brg_endian.h
|
567
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/config.h
|
568
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/ext.c
|
569
|
+
- ext/digest/kangarootwelve/targets/avx512noasm/utils.h
|
570
|
+
- ext/digest/kangarootwelve/targets/compact/KangarooTwelve.c
|
571
|
+
- ext/digest/kangarootwelve/targets/compact/KangarooTwelve.h
|
572
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-SnP.h
|
573
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-compact64.c
|
574
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times2-SnP.h
|
575
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times2-on1.c
|
576
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times4-SnP.h
|
577
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times4-on1.c
|
578
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times8-SnP.h
|
579
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-1600-times8-on1.c
|
580
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-200-SnP.h
|
581
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-200-compact.c
|
582
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-400-SnP.h
|
583
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-400-reference.c
|
584
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-400-reference.h
|
585
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-800-SnP.h
|
586
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakP-800-compact.c
|
587
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakSponge.c
|
588
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakSponge.h
|
589
|
+
- ext/digest/kangarootwelve/targets/compact/KeccakSponge.inc
|
590
|
+
- ext/digest/kangarootwelve/targets/compact/Phases.h
|
591
|
+
- ext/digest/kangarootwelve/targets/compact/PlSnP-Fallback.inc
|
592
|
+
- ext/digest/kangarootwelve/targets/compact/SnP-Relaned.h
|
593
|
+
- ext/digest/kangarootwelve/targets/compact/align.h
|
594
|
+
- ext/digest/kangarootwelve/targets/compact/brg_endian.h
|
595
|
+
- ext/digest/kangarootwelve/targets/compact/config.h
|
596
|
+
- ext/digest/kangarootwelve/targets/compact/ext.c
|
597
|
+
- ext/digest/kangarootwelve/targets/compact/utils.h
|
598
|
+
- ext/digest/kangarootwelve/targets/config.h
|
599
|
+
- ext/digest/kangarootwelve/targets/defs
|
600
|
+
- ext/digest/kangarootwelve/targets/generic32/KangarooTwelve.c
|
601
|
+
- ext/digest/kangarootwelve/targets/generic32/KangarooTwelve.h
|
602
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-SnP.h
|
603
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-inplace32BI.c
|
604
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times2-SnP.h
|
605
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times2-on1.c
|
606
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times4-SnP.h
|
607
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times4-on1.c
|
608
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times8-SnP.h
|
609
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-1600-times8-on1.c
|
610
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-200-SnP.h
|
611
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-200-reference.c
|
612
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-200-reference.h
|
613
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-400-SnP.h
|
614
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-400-reference.c
|
615
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-400-reference.h
|
616
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-SnP.h
|
617
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32-bis.macros
|
618
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32-config.h
|
619
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32.c
|
620
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-opt32.macros
|
621
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-unrolling-bis.macros
|
622
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakP-800-unrolling.macros
|
623
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakSponge.c
|
624
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakSponge.h
|
625
|
+
- ext/digest/kangarootwelve/targets/generic32/KeccakSponge.inc
|
626
|
+
- ext/digest/kangarootwelve/targets/generic32/Phases.h
|
627
|
+
- ext/digest/kangarootwelve/targets/generic32/PlSnP-Fallback.inc
|
628
|
+
- ext/digest/kangarootwelve/targets/generic32/SnP-Relaned.h
|
629
|
+
- ext/digest/kangarootwelve/targets/generic32/align.h
|
630
|
+
- ext/digest/kangarootwelve/targets/generic32/brg_endian.h
|
631
|
+
- ext/digest/kangarootwelve/targets/generic32/config.h
|
632
|
+
- ext/digest/kangarootwelve/targets/generic32/ext.c
|
633
|
+
- ext/digest/kangarootwelve/targets/generic32/utils.h
|
634
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KangarooTwelve.c
|
635
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KangarooTwelve.h
|
636
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-SnP.h
|
637
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-inplace32BI.c
|
638
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times2-SnP.h
|
639
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times2-on1.c
|
640
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times4-SnP.h
|
641
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times4-on1.c
|
642
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times8-SnP.h
|
643
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-1600-times8-on1.c
|
644
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-200-SnP.h
|
645
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-200-reference.c
|
646
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-200-reference.h
|
647
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-400-SnP.h
|
648
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-400-reference.c
|
649
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-400-reference.h
|
650
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-SnP.h
|
651
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32-bis.macros
|
652
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32-config.h
|
653
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32.c
|
654
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-opt32.macros
|
655
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-unrolling-bis.macros
|
656
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakP-800-unrolling.macros
|
657
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakSponge.c
|
658
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakSponge.h
|
659
|
+
- ext/digest/kangarootwelve/targets/generic32lc/KeccakSponge.inc
|
660
|
+
- ext/digest/kangarootwelve/targets/generic32lc/Phases.h
|
661
|
+
- ext/digest/kangarootwelve/targets/generic32lc/PlSnP-Fallback.inc
|
662
|
+
- ext/digest/kangarootwelve/targets/generic32lc/SnP-Relaned.h
|
663
|
+
- ext/digest/kangarootwelve/targets/generic32lc/align.h
|
664
|
+
- ext/digest/kangarootwelve/targets/generic32lc/brg_endian.h
|
665
|
+
- ext/digest/kangarootwelve/targets/generic32lc/config.h
|
666
|
+
- ext/digest/kangarootwelve/targets/generic32lc/ext.c
|
667
|
+
- ext/digest/kangarootwelve/targets/generic32lc/utils.h
|
668
|
+
- ext/digest/kangarootwelve/targets/generic64/KangarooTwelve.c
|
669
|
+
- ext/digest/kangarootwelve/targets/generic64/KangarooTwelve.h
|
670
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-64.macros
|
671
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-SnP.h
|
672
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-opt64-config.h
|
673
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-opt64.c
|
674
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times2-SnP.h
|
675
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times2-on1.c
|
676
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times4-SnP.h
|
677
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times4-on1.c
|
678
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times8-SnP.h
|
679
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-times8-on1.c
|
680
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-1600-unrolling.macros
|
681
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-200-SnP.h
|
682
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-200-reference.c
|
683
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-200-reference.h
|
684
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-400-SnP.h
|
685
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-400-reference.c
|
686
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-400-reference.h
|
687
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-SnP.h
|
688
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32-bis.macros
|
689
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32-config.h
|
690
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32.c
|
691
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-opt32.macros
|
692
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-unrolling-bis.macros
|
693
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakP-800-unrolling.macros
|
694
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakSponge.c
|
695
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakSponge.h
|
696
|
+
- ext/digest/kangarootwelve/targets/generic64/KeccakSponge.inc
|
697
|
+
- ext/digest/kangarootwelve/targets/generic64/Phases.h
|
698
|
+
- ext/digest/kangarootwelve/targets/generic64/PlSnP-Fallback.inc
|
699
|
+
- ext/digest/kangarootwelve/targets/generic64/SnP-Relaned.h
|
700
|
+
- ext/digest/kangarootwelve/targets/generic64/align.h
|
701
|
+
- ext/digest/kangarootwelve/targets/generic64/brg_endian.h
|
702
|
+
- ext/digest/kangarootwelve/targets/generic64/config.h
|
703
|
+
- ext/digest/kangarootwelve/targets/generic64/ext.c
|
704
|
+
- ext/digest/kangarootwelve/targets/generic64/utils.h
|
705
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KangarooTwelve.c
|
706
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KangarooTwelve.h
|
707
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-64.macros
|
708
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-SnP.h
|
709
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-opt64-config.h
|
710
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-opt64.c
|
711
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times2-SnP.h
|
712
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times2-on1.c
|
713
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times4-SnP.h
|
714
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times4-on1.c
|
715
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times8-SnP.h
|
716
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-times8-on1.c
|
717
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-1600-unrolling.macros
|
718
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-200-SnP.h
|
719
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-200-reference.c
|
720
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-200-reference.h
|
721
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-400-SnP.h
|
722
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-400-reference.c
|
723
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-400-reference.h
|
724
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-SnP.h
|
725
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32-bis.macros
|
726
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32-config.h
|
727
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32.c
|
728
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-opt32.macros
|
729
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-unrolling-bis.macros
|
730
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakP-800-unrolling.macros
|
731
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakSponge.c
|
732
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakSponge.h
|
733
|
+
- ext/digest/kangarootwelve/targets/generic64lc/KeccakSponge.inc
|
734
|
+
- ext/digest/kangarootwelve/targets/generic64lc/Phases.h
|
735
|
+
- ext/digest/kangarootwelve/targets/generic64lc/PlSnP-Fallback.inc
|
736
|
+
- ext/digest/kangarootwelve/targets/generic64lc/SnP-Relaned.h
|
737
|
+
- ext/digest/kangarootwelve/targets/generic64lc/align.h
|
738
|
+
- ext/digest/kangarootwelve/targets/generic64lc/brg_endian.h
|
739
|
+
- ext/digest/kangarootwelve/targets/generic64lc/config.h
|
740
|
+
- ext/digest/kangarootwelve/targets/generic64lc/ext.c
|
741
|
+
- ext/digest/kangarootwelve/targets/generic64lc/utils.h
|
742
|
+
- ext/digest/kangarootwelve/targets/list
|
743
|
+
- ext/digest/kangarootwelve/targets/reference/KangarooTwelve.c
|
744
|
+
- ext/digest/kangarootwelve/targets/reference/KangarooTwelve.h
|
745
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-SnP.h
|
746
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-reference.c
|
747
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-reference.h
|
748
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times2-SnP.h
|
749
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times2-on1.c
|
750
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times4-SnP.h
|
751
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times4-on1.c
|
752
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times8-SnP.h
|
753
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-1600-times8-on1.c
|
754
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-200-SnP.h
|
755
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-200-reference.c
|
756
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-200-reference.h
|
757
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-400-SnP.h
|
758
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-400-reference.c
|
759
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-400-reference.h
|
760
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-800-SnP.h
|
761
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-800-reference.c
|
762
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakP-800-reference.h
|
763
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakSponge.c
|
764
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakSponge.h
|
765
|
+
- ext/digest/kangarootwelve/targets/reference/KeccakSponge.inc
|
766
|
+
- ext/digest/kangarootwelve/targets/reference/Phases.h
|
767
|
+
- ext/digest/kangarootwelve/targets/reference/PlSnP-Fallback.inc
|
768
|
+
- ext/digest/kangarootwelve/targets/reference/align.h
|
769
|
+
- ext/digest/kangarootwelve/targets/reference/brg_endian.h
|
770
|
+
- ext/digest/kangarootwelve/targets/reference/config.h
|
771
|
+
- ext/digest/kangarootwelve/targets/reference/displayIntermediateValues.c
|
772
|
+
- ext/digest/kangarootwelve/targets/reference/displayIntermediateValues.h
|
773
|
+
- ext/digest/kangarootwelve/targets/reference/ext.c
|
774
|
+
- ext/digest/kangarootwelve/targets/reference/utils.h
|
775
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KangarooTwelve.c
|
776
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KangarooTwelve.h
|
777
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-SnP.h
|
778
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-reference.h
|
779
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-reference32BI.c
|
780
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times2-SnP.h
|
781
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times2-on1.c
|
782
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times4-SnP.h
|
783
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times4-on1.c
|
784
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times8-SnP.h
|
785
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-1600-times8-on1.c
|
786
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-200-SnP.h
|
787
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-200-reference.c
|
788
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-200-reference.h
|
789
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-400-SnP.h
|
790
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-400-reference.c
|
791
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-400-reference.h
|
792
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-800-SnP.h
|
793
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-800-reference.c
|
794
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakP-800-reference.h
|
795
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakSponge.c
|
796
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakSponge.h
|
797
|
+
- ext/digest/kangarootwelve/targets/reference32bits/KeccakSponge.inc
|
798
|
+
- ext/digest/kangarootwelve/targets/reference32bits/Phases.h
|
799
|
+
- ext/digest/kangarootwelve/targets/reference32bits/PlSnP-Fallback.inc
|
800
|
+
- ext/digest/kangarootwelve/targets/reference32bits/align.h
|
801
|
+
- ext/digest/kangarootwelve/targets/reference32bits/brg_endian.h
|
802
|
+
- ext/digest/kangarootwelve/targets/reference32bits/config.h
|
803
|
+
- ext/digest/kangarootwelve/targets/reference32bits/displayIntermediateValues.c
|
804
|
+
- ext/digest/kangarootwelve/targets/reference32bits/displayIntermediateValues.h
|
805
|
+
- ext/digest/kangarootwelve/targets/reference32bits/ext.c
|
806
|
+
- ext/digest/kangarootwelve/targets/reference32bits/utils.h
|
807
|
+
- ext/digest/kangarootwelve/targets/ssse3/KangarooTwelve.c
|
808
|
+
- ext/digest/kangarootwelve/targets/ssse3/KangarooTwelve.h
|
809
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-64.macros
|
810
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-SnP.h
|
811
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-opt64-config.h
|
812
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-opt64.c
|
813
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times2-SIMD128.c
|
814
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times2-SnP.h
|
815
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times4-SnP.h
|
816
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times4-on2.c
|
817
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times8-SnP.h
|
818
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-times8-on2.c
|
819
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-1600-unrolling.macros
|
820
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-200-SnP.h
|
821
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-200-reference.c
|
822
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-200-reference.h
|
823
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-400-SnP.h
|
824
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-400-reference.c
|
825
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-400-reference.h
|
826
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-SnP.h
|
827
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32-bis.macros
|
828
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32-config.h
|
829
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32.c
|
830
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-opt32.macros
|
831
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-unrolling-bis.macros
|
832
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakP-800-unrolling.macros
|
833
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakSponge.c
|
834
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakSponge.h
|
835
|
+
- ext/digest/kangarootwelve/targets/ssse3/KeccakSponge.inc
|
836
|
+
- ext/digest/kangarootwelve/targets/ssse3/Phases.h
|
837
|
+
- ext/digest/kangarootwelve/targets/ssse3/PlSnP-Fallback.inc
|
838
|
+
- ext/digest/kangarootwelve/targets/ssse3/SIMD128-config.h
|
839
|
+
- ext/digest/kangarootwelve/targets/ssse3/SnP-Relaned.h
|
840
|
+
- ext/digest/kangarootwelve/targets/ssse3/align.h
|
841
|
+
- ext/digest/kangarootwelve/targets/ssse3/brg_endian.h
|
842
|
+
- ext/digest/kangarootwelve/targets/ssse3/config.h
|
843
|
+
- ext/digest/kangarootwelve/targets/ssse3/ext.c
|
844
|
+
- ext/digest/kangarootwelve/targets/ssse3/utils.h
|
845
|
+
- ext/digest/kangarootwelve/targets/xop/KangarooTwelve.c
|
846
|
+
- ext/digest/kangarootwelve/targets/xop/KangarooTwelve.h
|
847
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-SnP.h
|
848
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-XOP-config.h
|
849
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-XOP.c
|
850
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times2-SIMD128.c
|
851
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times2-SnP.h
|
852
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times4-SnP.h
|
853
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times4-on2.c
|
854
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times8-SnP.h
|
855
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-times8-on2.c
|
856
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-1600-unrolling.macros
|
857
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-200-SnP.h
|
858
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-200-reference.c
|
859
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-200-reference.h
|
860
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-400-SnP.h
|
861
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-400-reference.c
|
862
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-400-reference.h
|
863
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-SnP.h
|
864
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32-bis.macros
|
865
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32-config.h
|
866
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32.c
|
867
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-opt32.macros
|
868
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-unrolling-bis.macros
|
869
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakP-800-unrolling.macros
|
870
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakSponge.c
|
871
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakSponge.h
|
872
|
+
- ext/digest/kangarootwelve/targets/xop/KeccakSponge.inc
|
873
|
+
- ext/digest/kangarootwelve/targets/xop/Phases.h
|
874
|
+
- ext/digest/kangarootwelve/targets/xop/PlSnP-Fallback.inc
|
875
|
+
- ext/digest/kangarootwelve/targets/xop/SIMD128-config.h
|
876
|
+
- ext/digest/kangarootwelve/targets/xop/SnP-Relaned.h
|
877
|
+
- ext/digest/kangarootwelve/targets/xop/align.h
|
878
|
+
- ext/digest/kangarootwelve/targets/xop/brg_endian.h
|
879
|
+
- ext/digest/kangarootwelve/targets/xop/config.h
|
880
|
+
- ext/digest/kangarootwelve/targets/xop/ext.c
|
881
|
+
- ext/digest/kangarootwelve/targets/xop/utils.h
|
367
882
|
- ext/digest/kangarootwelve/utils.h
|
368
883
|
- lib/digest/kangarootwelve/version.rb
|
884
|
+
- rakelib/alt-install-task.rake
|
369
885
|
- test/test.rb
|
370
886
|
homepage: https://github.com/konsolebox/digest-kangarootwelve-ruby
|
371
887
|
licenses:
|
@@ -386,7 +902,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
386
902
|
- !ruby/object:Gem::Version
|
387
903
|
version: '0'
|
388
904
|
requirements: []
|
389
|
-
rubygems_version: 3.
|
905
|
+
rubygems_version: 3.3.8
|
390
906
|
signing_key:
|
391
907
|
specification_version: 4
|
392
908
|
summary: KangarooTwelve for Ruby
|