digest-kangarootwelve 0.0.2 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +71 -37
- data/Rakefile +7 -9
- data/digest-kangarootwelve.gemspec +323 -14
- data/ext/digest/kangarootwelve/ext.c +228 -177
- data/ext/digest/kangarootwelve/extconf.rb +15 -1
- data/ext/digest/kangarootwelve/keccak/armv6m/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-SnP.h +36 -0
- data/ext/digest/kangarootwelve/{KeccakP-1600-times2-SnP.h → keccak/armv6m/KeccakP-1600-times2-SnP.h} +10 -10
- data/ext/digest/kangarootwelve/{KeccakP-1600-times2-on1.c → keccak/armv6m/KeccakP-1600-times2-on1.c} +13 -7
- data/ext/digest/kangarootwelve/{KeccakP-1600-times4-SnP.h → keccak/armv6m/KeccakP-1600-times4-SnP.h} +10 -10
- data/ext/digest/kangarootwelve/{KeccakP-1600-times4-on1.c → keccak/armv6m/KeccakP-1600-times4-on1.c} +13 -7
- data/ext/digest/kangarootwelve/{KeccakP-1600-times8-SnP.h → keccak/armv6m/KeccakP-1600-times8-SnP.h} +10 -10
- data/ext/digest/kangarootwelve/{KeccakP-1600-times8-on1.c → keccak/armv6m/KeccakP-1600-times8-on1.c} +13 -7
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-u2-32bi-armv6m-le-gcc.s +1334 -0
- data/ext/digest/kangarootwelve/keccak/armv6m/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/{PlSnP-Fallback.inc → keccak/armv6m/PlSnP-Fallback.inc} +11 -7
- data/ext/digest/kangarootwelve/keccak/armv6m/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-SnP.h +37 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-armv7a-le-neon-gcc.s +826 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s +1245 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times2-SnP.h +38 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times4-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times8-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/armv7a/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-SnP.h +36 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s +1170 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/armv7m/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-SnP.h +28 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-armv8a-neon.s +537 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/armv8a/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-SnP.h +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-x86-64-gas.s +1190 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-SnP.h +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-x86-64-shld-gas.s +1190 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/asmx86-64shld/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-SnP.h +37 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-avr8-fast.s +1116 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/avr8/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/avr8/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/avr8/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-SnP.h +39 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-XOP-config.h +6 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-XOP.c +473 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times2-SIMD128.c +954 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times2-SnP.h +47 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times4-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times8-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-unrolling.macros +302 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/bulldozer/SIMD128-config.h +9 -0
- data/ext/digest/kangarootwelve/{SnP-Relaned.h → keccak/bulldozer/SnP-Relaned.h} +13 -7
- data/ext/digest/kangarootwelve/keccak/bulldozer/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/{KangarooTwelve.c → keccak/common/KangarooTwelve.c} +6 -10
- data/ext/digest/kangarootwelve/{KangarooTwelve.h → keccak/common/KangarooTwelve.h} +3 -7
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplex-common.h +37 -0
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplex.inc +192 -0
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplexWidth1600.c +34 -0
- data/ext/digest/kangarootwelve/keccak/common/KeccakDuplexWidth1600.h +25 -0
- data/ext/digest/kangarootwelve/{KeccakSponge-common.h → keccak/common/KeccakSponge-common.h} +5 -7
- data/ext/digest/kangarootwelve/{KeccakSponge.inc → keccak/common/KeccakSponge.inc} +6 -8
- data/ext/digest/kangarootwelve/{KeccakSpongeWidth1600.c → keccak/common/KeccakSpongeWidth1600.c} +6 -8
- data/ext/digest/kangarootwelve/{KeccakSpongeWidth1600.h → keccak/common/KeccakSpongeWidth1600.h} +5 -7
- data/ext/digest/kangarootwelve/{Phases.h → keccak/common/Phases.h} +3 -7
- data/ext/digest/kangarootwelve/{align.h → keccak/common/align.h} +5 -7
- data/ext/digest/kangarootwelve/{brg_endian.h → keccak/common/brg_endian.h} +0 -0
- data/ext/digest/kangarootwelve/keccak/compact/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/{KeccakP-1600-SnP.h → keccak/compact/KeccakP-1600-SnP.h} +7 -10
- data/ext/digest/kangarootwelve/{KeccakP-1600-compact64.c → keccak/compact/KeccakP-1600-compact64.c} +11 -7
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/compact/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/compact/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/compact/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/compact/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-SnP.h +38 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-inplace32BI.c +1162 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic32/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/generic32/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/generic32/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-SnP.h +38 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-inplace32BI.c +1162 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/generic32lc/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-64.macros +2195 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-SnP.h +49 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-opt64-config.h +6 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-opt64.c +541 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-unrolling.macros +302 -0
- data/ext/digest/kangarootwelve/keccak/generic64/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/generic64/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/generic64/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-64.macros +2195 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-SnP.h +49 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-opt64-config.h +7 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-opt64.c +541 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-unrolling.macros +302 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/generic64lc/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-AVX2.s +993 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-SnP.h +41 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times2-SIMD128.c +954 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times2-SnP.h +47 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times4-SIMD256.c +1303 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times4-SnP.h +53 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times8-on4.c +38 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-unrolling.macros +302 -0
- data/ext/digest/kangarootwelve/keccak/haswell/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/haswell/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/haswell/SIMD128-config.h +8 -0
- data/ext/digest/kangarootwelve/keccak/haswell/SIMD256-config.h +7 -0
- data/ext/digest/kangarootwelve/keccak/haswell/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-64.macros +2195 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-SnP.h +49 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-opt64-config.h +7 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-opt64.c +541 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times2-SIMD128.c +954 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times2-SnP.h +47 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times4-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times8-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-unrolling.macros +302 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/SIMD128-config.h +8 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/nehalem/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-SnP.h +41 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-reference.c +424 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-reference.h +20 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/reference/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/reference/displayIntermediateValues.c +176 -0
- data/ext/digest/kangarootwelve/keccak/reference/displayIntermediateValues.h +29 -0
- data/ext/digest/kangarootwelve/keccak/reference/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-SnP.h +41 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-reference.h +20 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-reference32BI.c +612 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times2-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times2-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times4-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times8-on1.c +37 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/displayIntermediateValues.c +176 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/displayIntermediateValues.h +29 -0
- data/ext/digest/kangarootwelve/keccak/reference32bits/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-64.macros +2195 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-SnP.h +49 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-opt64-config.h +8 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-opt64.c +541 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times2-SIMD128.c +954 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times2-SnP.h +47 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times4-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times4-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times8-SnP.h +45 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times8-on2.c +38 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-unrolling.macros +302 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/PlSnP-Fallback.inc +287 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/SIMD128-config.h +8 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/SnP-Relaned.h +140 -0
- data/ext/digest/kangarootwelve/keccak/sandybridge/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KangarooTwelve.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakDuplexWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-AVX512-config.h +6 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-AVX512.c +621 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-SnP.h +42 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times2-SIMD512.c +852 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times2-SnP.h +49 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times4-SIMD512.c +883 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times4-SnP.h +49 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times8-SIMD512.c +1473 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times8-SnP.h +53 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/KeccakSpongeWidth1600.link.c +1 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/SIMD512-2-config.h +7 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/SIMD512-4-config.h +7 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/SIMD512-config.h +7 -0
- data/ext/digest/kangarootwelve/keccak/skylakex/ext.link.c +1 -0
- data/ext/digest/kangarootwelve/utils.h +101 -0
- data/lib/digest/kangarootwelve/version.rb +2 -2
- data/test/test.rb +68 -31
- metadata +305 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fe63a409aef358036b2c298c06de28e0a6916bfa283f02303b58d9fcab607af1
|
4
|
+
data.tar.gz: d2ab330b5ede162c6bbea6616b451608927535ce01ecd95dc532c415dc1bfa00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95c04bb572011f47a793f5c25529c99f742fb7d2b9c074c79f639b09dd259ea17ce3faa3485115e95049f5bf07e36a44ae8c5756cb00ae0befbc65d99fa572b9
|
7
|
+
data.tar.gz: f5a553b015a3fc000a401eb7cd6679dba463373e046d45bf60470ed60a9484faf1ca72e1ba80afd21900eac69e461b5f92539a130548e514032a0b74ee5103af
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
# digest-kangarootwelve
|
1
|
+
# digest-kangarootwelve
|
2
2
|
|
3
|
-
|
3
|
+
The digest-kangarootwelve gem is an implementation of KangarooTwelve for Ruby
|
4
|
+
that works on top of `Digest::Base`.
|
4
5
|
|
5
6
|
It allows hashing with different digest lengths and different customization
|
6
7
|
strings.
|
@@ -8,14 +9,22 @@ strings.
|
|
8
9
|
See http://kangarootwelve.org/ to know more about the hashing algorithm.
|
9
10
|
|
10
11
|
The core implementation was extracted/generated from the KCP
|
11
|
-
(https://github.com/gvanas/KeccakCodePackage).
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
(https://github.com/gvanas/KeccakCodePackage).
|
13
|
+
|
14
|
+
KCP provides implementations on many target platforms. This gem used to only
|
15
|
+
have the `compact` implementation, but it now has adopted all of them.
|
16
|
+
|
17
|
+
The available implementation targets are `armv6m`, `armv7a`, `armv7m`, `armv8a`,
|
18
|
+
`asmx86-64`, `asmx86-64shld`, `avr8`, `bulldozer`, `compact`, `generic32`,
|
19
|
+
`generic32lc`, `generic64`, `generic64lc`, `haswell`, `nehalem`, `reference`,
|
20
|
+
`reference32bits`, `sandybridge`, and `skylakex`, with `compact` being the
|
21
|
+
default.
|
22
|
+
|
23
|
+
Instructions on how to select a target is written below.
|
15
24
|
|
16
25
|
## Installation
|
17
26
|
|
18
|
-
Add this line to
|
27
|
+
Add this line to the application's Gemfile:
|
19
28
|
|
20
29
|
gem 'digest-kangarootwelve'
|
21
30
|
|
@@ -23,31 +32,42 @@ And then execute:
|
|
23
32
|
|
24
33
|
$ bundle
|
25
34
|
|
26
|
-
|
35
|
+
It can also be installed manually with:
|
27
36
|
|
28
37
|
$ gem install digest-kangarootwelve
|
29
38
|
|
30
|
-
|
39
|
+
To install with a different platform target, use `--with-target`. Example:
|
31
40
|
|
32
|
-
|
41
|
+
$ gem install digest-kangarootwelve -- --with-target=sandybridge
|
33
42
|
|
34
|
-
|
35
|
-
|
43
|
+
It's a good idea to test the gem when using a different target platform other
|
44
|
+
than default as some platforms are not yet tested, and behavior of optimized
|
45
|
+
code can vary on different machines or compilers. This can be done by running
|
46
|
+
the following command. Replace VERSION with the installed gem's version.
|
36
47
|
|
37
|
-
|
38
|
-
=> #<Digest::KangarooTwelve_32|32|65536||1ac2d450fc3b4205d19da7bfca1b37513c0803577ac7167f06fe2ce1f0ef39e5>
|
48
|
+
$ ( cd "$(ruby -e 'puts Gem.dir')"/gems/digest-kangarootwelve-VERSION && bundle && rake test )
|
39
49
|
|
40
|
-
|
41
|
-
=> "ab174f328c55a5510b0b209791bf8b60e801a7cfc2aa42042dcb8f547fbe3a7d"
|
50
|
+
The library can also be installed in Gentoo system-wide using 'layman':
|
42
51
|
|
43
|
-
|
44
|
-
|
52
|
+
# Fetch remote list of overlays, and add 'konsolebox' overlay
|
53
|
+
layman -f && layman -a konsolebox
|
45
54
|
|
46
|
-
|
47
|
-
|
55
|
+
# Unmask unstable keyword
|
56
|
+
echo 'dev-ruby/digest-kangarootwelve' > /etc/portage/package.keywords/dev-ruby.digest-kangarootwelve
|
57
|
+
|
58
|
+
# Merge package
|
59
|
+
emerge dev-ruby/digest-kangarootwelve
|
60
|
+
|
61
|
+
## Example Usage
|
62
|
+
|
63
|
+
Digest::KangarooTwelve[32].digest("abc")
|
64
|
+
=> "\xAB\x17O2\x8CU\xA5Q\v\v \x97\x91\xBF\x8B`\xE8\x01\xA7\xCF\xC2\xAAB\x04-\xCB\x8FT\x7F\xBE:}"
|
48
65
|
|
49
|
-
Digest::KangarooTwelve.
|
50
|
-
=>
|
66
|
+
Digest::KangarooTwelve[32].hexdigest("abc")
|
67
|
+
=> "ab174f328c55a5510b0b209791bf8b60e801a7cfc2aa42042dcb8f547fbe3a7d"
|
68
|
+
|
69
|
+
Digest::KangarooTwelve[32].new.update("a").update("b").update("c").hexdigest
|
70
|
+
=> "ab174f328c55a5510b0b209791bf8b60e801a7cfc2aa42042dcb8f547fbe3a7d"
|
51
71
|
|
52
72
|
Digest::KangarooTwelve.implement(name: "SecretHash", digest_length: 32, customization: "secret")
|
53
73
|
=> Digest::SecretHash
|
@@ -55,30 +75,44 @@ Or install it yourself as:
|
|
55
75
|
Digest::KangarooTwelve.implement(n: "SecretHash", d: 32, c: "secret")
|
56
76
|
=> Digest::SecretHash
|
57
77
|
|
58
|
-
Digest::SecretHash.
|
78
|
+
Digest::SecretHash.hexdigest("abc")
|
59
79
|
=> "dc1fd53f85402e2b34fa92bd87593dd9c3fe6cc49d9db6c05dc0cf26c6a7e03f"
|
60
80
|
|
61
|
-
Digest::KangarooTwelve.
|
62
|
-
=>
|
81
|
+
Digest::KangarooTwelve.default
|
82
|
+
=> Digest::KangarooTwelve_64
|
63
83
|
|
64
84
|
## Details
|
65
85
|
|
66
|
-
|
67
|
-
`
|
68
|
-
`
|
69
|
-
`
|
70
|
-
|
86
|
+
The implementation classes produced by `[]`, `default` or
|
87
|
+
`implement` can be used just like any other implementation class in `Digest`
|
88
|
+
(like `Digest::SHA1` or `Digest::SHA512`), since the implementation classes are
|
89
|
+
based on `Digest::Base`.
|
90
|
+
|
91
|
+
For details on how to use these methods, please examine the comments in
|
92
|
+
`ext/digest/kangarootwelve/ext.c`, or run `ri` with
|
93
|
+
`ri 'Digest::KangarooTwelve'`, or `ri 'Digest::KangarooTwelve::<method_name>'`.
|
71
94
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
95
|
+
## API Documentation
|
96
|
+
|
97
|
+
RubyGems.org also provides autogenerated API documentation of the library in
|
98
|
+
https://www.rubydoc.info/gems/digest-kangarootwelve/.
|
99
|
+
|
100
|
+
## Github Page
|
101
|
+
|
102
|
+
https://github.com/konsolebox/digest-kangarootwelve-ruby
|
103
|
+
|
104
|
+
## RubyGems.org Page
|
105
|
+
|
106
|
+
https://rubygems.org/gems/digest-kangarootwelve
|
77
107
|
|
78
108
|
## Contributing
|
79
109
|
|
80
110
|
1. Fork it ( https://github.com/konsolebox/digest-kangarootwelve-ruby/fork ).
|
81
|
-
2. Create
|
82
|
-
3. Commit
|
111
|
+
2. Create feature branch (`git checkout -b my-new-feature`).
|
112
|
+
3. Commit changes (`git commit -am 'Add some feature'`).
|
83
113
|
4. Push to the branch (`git push origin my-new-feature`).
|
84
114
|
5. Create a new Pull Request.
|
115
|
+
|
116
|
+
[![Build Status](https://travis-ci.org/konsolebox/digest-kangarootwelve-ruby.svg?branch=master)](https://travis-ci.org/konsolebox/digest-kangarootwelve-ruby)
|
117
|
+
[![Build Status](https://ci.appveyor.com/api/projects/status/bwedifhi4wa5wik7?svg=true)](https://ci.appveyor.com/project/konsolebox/digest-kangarootwelve-ruby)
|
118
|
+
[![Build Status](https://github.com/konsolebox/digest-kangarootwelve-ruby/actions/workflows/ruby.yml/badge.svg)](https://github.com/konsolebox/digest-kangarootwelve-ruby/actions/workflows/ruby.yml)
|
data/Rakefile
CHANGED
@@ -1,20 +1,18 @@
|
|
1
|
+
# build, clean, clobber, install, install:local, release[remote]
|
1
2
|
require 'bundler/gem_tasks'
|
2
|
-
require 'rake/testtask'
|
3
3
|
|
4
|
-
# clean, clobber, compile,
|
4
|
+
# clean, clobber, compile, compile:digest/kangarootwelve
|
5
5
|
require 'rake/extensiontask'
|
6
6
|
Rake::ExtensionTask.new('digest/kangarootwelve', Bundler::GemHelper.gemspec)
|
7
7
|
|
8
8
|
# test
|
9
|
-
|
9
|
+
require 'rake/testtask'
|
10
|
+
Rake::TestTask.new(:test) do |t|
|
10
11
|
t.test_files = FileList['test/test.rb']
|
11
12
|
t.verbose = true
|
12
13
|
end
|
13
14
|
|
14
|
-
#
|
15
|
-
task :
|
16
|
-
list = FileList.new('test/*.tmp', 'test/*.temp')
|
17
|
-
rm_f list unless list.empty?
|
18
|
-
end
|
15
|
+
# Set 'test' as default task.
|
16
|
+
task :default => [:compile, :test]
|
19
17
|
|
20
|
-
# Run `rake --tasks` for a list of tasks.
|
18
|
+
# Run `rake --tasks` or `rake --tasks --all` for a list of tasks.
|
@@ -5,25 +5,334 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
require 'digest/kangarootwelve/version'
|
6
6
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
|
-
spec.name =
|
8
|
+
spec.name = 'digest-kangarootwelve'
|
9
9
|
spec.version = Digest::KangarooTwelve::VERSION
|
10
|
-
spec.authors = [
|
11
|
-
spec.email = [
|
12
|
-
spec.summary =
|
13
|
-
spec.description =
|
14
|
-
spec.homepage =
|
15
|
-
spec.license =
|
10
|
+
spec.authors = ['konsolebox']
|
11
|
+
spec.email = ['konsolebox@gmail.com']
|
12
|
+
spec.summary = 'KangarooTwelve for Ruby'
|
13
|
+
spec.description = 'A KangarooTwelve library that works on top of Digest::Base.'
|
14
|
+
spec.homepage = 'https://github.com/konsolebox/digest-kangarootwelve-ruby'
|
15
|
+
spec.license = 'MIT'
|
16
16
|
|
17
17
|
spec.required_ruby_version = '>= 2.2'
|
18
18
|
|
19
|
-
spec.files
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
spec.files = %w{
|
20
|
+
Gemfile
|
21
|
+
LICENSE
|
22
|
+
README.md
|
23
|
+
Rakefile
|
24
|
+
digest-kangarootwelve.gemspec
|
25
|
+
ext/digest/kangarootwelve/extconf.rb
|
26
|
+
ext/digest/kangarootwelve/utils.h
|
27
|
+
ext/digest/kangarootwelve/keccak/armv6m/KangarooTwelve.link.c
|
28
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakDuplexWidth1600.link.c
|
29
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-SnP.h
|
30
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times2-SnP.h
|
31
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times2-on1.c
|
32
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times4-SnP.h
|
33
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times4-on1.c
|
34
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times8-SnP.h
|
35
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-times8-on1.c
|
36
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakP-1600-u2-32bi-armv6m-le-gcc.s
|
37
|
+
ext/digest/kangarootwelve/keccak/armv6m/KeccakSpongeWidth1600.link.c
|
38
|
+
ext/digest/kangarootwelve/keccak/armv6m/PlSnP-Fallback.inc
|
39
|
+
ext/digest/kangarootwelve/keccak/armv6m/ext.link.c
|
40
|
+
ext/digest/kangarootwelve/keccak/armv7a/KangarooTwelve.link.c
|
41
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakDuplexWidth1600.link.c
|
42
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-SnP.h
|
43
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-armv7a-le-neon-gcc.s
|
44
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-inplace-pl2-armv7a-neon-le-gcc.s
|
45
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times2-SnP.h
|
46
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times4-SnP.h
|
47
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times4-on2.c
|
48
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times8-SnP.h
|
49
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakP-1600-times8-on2.c
|
50
|
+
ext/digest/kangarootwelve/keccak/armv7a/KeccakSpongeWidth1600.link.c
|
51
|
+
ext/digest/kangarootwelve/keccak/armv7a/PlSnP-Fallback.inc
|
52
|
+
ext/digest/kangarootwelve/keccak/armv7a/ext.link.c
|
53
|
+
ext/digest/kangarootwelve/keccak/armv7m/KangarooTwelve.link.c
|
54
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakDuplexWidth1600.link.c
|
55
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-SnP.h
|
56
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-inplace-32bi-armv7m-le-gcc.s
|
57
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times2-SnP.h
|
58
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times2-on1.c
|
59
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times4-SnP.h
|
60
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times4-on1.c
|
61
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times8-SnP.h
|
62
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakP-1600-times8-on1.c
|
63
|
+
ext/digest/kangarootwelve/keccak/armv7m/KeccakSpongeWidth1600.link.c
|
64
|
+
ext/digest/kangarootwelve/keccak/armv7m/PlSnP-Fallback.inc
|
65
|
+
ext/digest/kangarootwelve/keccak/armv7m/ext.link.c
|
66
|
+
ext/digest/kangarootwelve/keccak/armv8a/KangarooTwelve.link.c
|
67
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakDuplexWidth1600.link.c
|
68
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-SnP.h
|
69
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-armv8a-neon.s
|
70
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times2-SnP.h
|
71
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times2-on1.c
|
72
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times4-SnP.h
|
73
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times4-on1.c
|
74
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times8-SnP.h
|
75
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakP-1600-times8-on1.c
|
76
|
+
ext/digest/kangarootwelve/keccak/armv8a/KeccakSpongeWidth1600.link.c
|
77
|
+
ext/digest/kangarootwelve/keccak/armv8a/PlSnP-Fallback.inc
|
78
|
+
ext/digest/kangarootwelve/keccak/armv8a/ext.link.c
|
79
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KangarooTwelve.link.c
|
80
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakDuplexWidth1600.link.c
|
81
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-SnP.h
|
82
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times2-SnP.h
|
83
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times2-on1.c
|
84
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times4-SnP.h
|
85
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times4-on1.c
|
86
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times8-SnP.h
|
87
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-times8-on1.c
|
88
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakP-1600-x86-64-shld-gas.s
|
89
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/KeccakSpongeWidth1600.link.c
|
90
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/PlSnP-Fallback.inc
|
91
|
+
ext/digest/kangarootwelve/keccak/asmx86-64shld/ext.link.c
|
92
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KangarooTwelve.link.c
|
93
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakDuplexWidth1600.link.c
|
94
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-SnP.h
|
95
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times2-SnP.h
|
96
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times2-on1.c
|
97
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times4-SnP.h
|
98
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times4-on1.c
|
99
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times8-SnP.h
|
100
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-times8-on1.c
|
101
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakP-1600-x86-64-gas.s
|
102
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/KeccakSpongeWidth1600.link.c
|
103
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/PlSnP-Fallback.inc
|
104
|
+
ext/digest/kangarootwelve/keccak/asmx86-64/ext.link.c
|
105
|
+
ext/digest/kangarootwelve/keccak/avr8/KangarooTwelve.link.c
|
106
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakDuplexWidth1600.link.c
|
107
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-SnP.h
|
108
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-avr8-fast.s
|
109
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times2-SnP.h
|
110
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times2-on1.c
|
111
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times4-SnP.h
|
112
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times4-on1.c
|
113
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times8-SnP.h
|
114
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakP-1600-times8-on1.c
|
115
|
+
ext/digest/kangarootwelve/keccak/avr8/KeccakSpongeWidth1600.link.c
|
116
|
+
ext/digest/kangarootwelve/keccak/avr8/PlSnP-Fallback.inc
|
117
|
+
ext/digest/kangarootwelve/keccak/avr8/ext.link.c
|
118
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KangarooTwelve.link.c
|
119
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakDuplexWidth1600.link.c
|
120
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-SnP.h
|
121
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-XOP.c
|
122
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-XOP-config.h
|
123
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times2-SIMD128.c
|
124
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times2-SnP.h
|
125
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times4-SnP.h
|
126
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times4-on2.c
|
127
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times8-SnP.h
|
128
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-times8-on2.c
|
129
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakP-1600-unrolling.macros
|
130
|
+
ext/digest/kangarootwelve/keccak/bulldozer/KeccakSpongeWidth1600.link.c
|
131
|
+
ext/digest/kangarootwelve/keccak/bulldozer/PlSnP-Fallback.inc
|
132
|
+
ext/digest/kangarootwelve/keccak/bulldozer/SIMD128-config.h
|
133
|
+
ext/digest/kangarootwelve/keccak/bulldozer/SnP-Relaned.h
|
134
|
+
ext/digest/kangarootwelve/keccak/bulldozer/ext.link.c
|
135
|
+
ext/digest/kangarootwelve/keccak/common/KangarooTwelve.c
|
136
|
+
ext/digest/kangarootwelve/keccak/common/KangarooTwelve.h
|
137
|
+
ext/digest/kangarootwelve/keccak/common/KeccakDuplex.inc
|
138
|
+
ext/digest/kangarootwelve/keccak/common/KeccakDuplexWidth1600.c
|
139
|
+
ext/digest/kangarootwelve/keccak/common/KeccakDuplexWidth1600.h
|
140
|
+
ext/digest/kangarootwelve/keccak/common/KeccakDuplex-common.h
|
141
|
+
ext/digest/kangarootwelve/keccak/common/KeccakSponge.inc
|
142
|
+
ext/digest/kangarootwelve/keccak/common/KeccakSpongeWidth1600.c
|
143
|
+
ext/digest/kangarootwelve/keccak/common/KeccakSpongeWidth1600.h
|
144
|
+
ext/digest/kangarootwelve/keccak/common/KeccakSponge-common.h
|
145
|
+
ext/digest/kangarootwelve/keccak/common/Phases.h
|
146
|
+
ext/digest/kangarootwelve/keccak/common/align.h
|
147
|
+
ext/digest/kangarootwelve/keccak/common/brg_endian.h
|
148
|
+
ext/digest/kangarootwelve/keccak/compact/KangarooTwelve.link.c
|
149
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakDuplexWidth1600.link.c
|
150
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-SnP.h
|
151
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-compact64.c
|
152
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times2-SnP.h
|
153
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times2-on1.c
|
154
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times4-SnP.h
|
155
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times4-on1.c
|
156
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times8-SnP.h
|
157
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakP-1600-times8-on1.c
|
158
|
+
ext/digest/kangarootwelve/keccak/compact/KeccakSpongeWidth1600.link.c
|
159
|
+
ext/digest/kangarootwelve/keccak/compact/PlSnP-Fallback.inc
|
160
|
+
ext/digest/kangarootwelve/keccak/compact/SnP-Relaned.h
|
161
|
+
ext/digest/kangarootwelve/keccak/compact/ext.link.c
|
162
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KangarooTwelve.link.c
|
163
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakDuplexWidth1600.link.c
|
164
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-SnP.h
|
165
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-inplace32BI.c
|
166
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times2-SnP.h
|
167
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times2-on1.c
|
168
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times4-SnP.h
|
169
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times4-on1.c
|
170
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times8-SnP.h
|
171
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakP-1600-times8-on1.c
|
172
|
+
ext/digest/kangarootwelve/keccak/generic32lc/KeccakSpongeWidth1600.link.c
|
173
|
+
ext/digest/kangarootwelve/keccak/generic32lc/PlSnP-Fallback.inc
|
174
|
+
ext/digest/kangarootwelve/keccak/generic32lc/SnP-Relaned.h
|
175
|
+
ext/digest/kangarootwelve/keccak/generic32lc/ext.link.c
|
176
|
+
ext/digest/kangarootwelve/keccak/generic32/KangarooTwelve.link.c
|
177
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakDuplexWidth1600.link.c
|
178
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-SnP.h
|
179
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-inplace32BI.c
|
180
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times2-SnP.h
|
181
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times2-on1.c
|
182
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times4-SnP.h
|
183
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times4-on1.c
|
184
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times8-SnP.h
|
185
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakP-1600-times8-on1.c
|
186
|
+
ext/digest/kangarootwelve/keccak/generic32/KeccakSpongeWidth1600.link.c
|
187
|
+
ext/digest/kangarootwelve/keccak/generic32/PlSnP-Fallback.inc
|
188
|
+
ext/digest/kangarootwelve/keccak/generic32/SnP-Relaned.h
|
189
|
+
ext/digest/kangarootwelve/keccak/generic32/ext.link.c
|
190
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KangarooTwelve.link.c
|
191
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakDuplexWidth1600.link.c
|
192
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-64.macros
|
193
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-SnP.h
|
194
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-opt64.c
|
195
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-opt64-config.h
|
196
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times2-SnP.h
|
197
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times2-on1.c
|
198
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times4-SnP.h
|
199
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times4-on1.c
|
200
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times8-SnP.h
|
201
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-times8-on1.c
|
202
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakP-1600-unrolling.macros
|
203
|
+
ext/digest/kangarootwelve/keccak/generic64lc/KeccakSpongeWidth1600.link.c
|
204
|
+
ext/digest/kangarootwelve/keccak/generic64lc/PlSnP-Fallback.inc
|
205
|
+
ext/digest/kangarootwelve/keccak/generic64lc/SnP-Relaned.h
|
206
|
+
ext/digest/kangarootwelve/keccak/generic64lc/ext.link.c
|
207
|
+
ext/digest/kangarootwelve/keccak/generic64/KangarooTwelve.link.c
|
208
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakDuplexWidth1600.link.c
|
209
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-64.macros
|
210
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-SnP.h
|
211
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-opt64.c
|
212
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-opt64-config.h
|
213
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times2-SnP.h
|
214
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times2-on1.c
|
215
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times4-SnP.h
|
216
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times4-on1.c
|
217
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times8-SnP.h
|
218
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-times8-on1.c
|
219
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakP-1600-unrolling.macros
|
220
|
+
ext/digest/kangarootwelve/keccak/generic64/KeccakSpongeWidth1600.link.c
|
221
|
+
ext/digest/kangarootwelve/keccak/generic64/PlSnP-Fallback.inc
|
222
|
+
ext/digest/kangarootwelve/keccak/generic64/SnP-Relaned.h
|
223
|
+
ext/digest/kangarootwelve/keccak/generic64/ext.link.c
|
224
|
+
ext/digest/kangarootwelve/keccak/haswell/KangarooTwelve.link.c
|
225
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakDuplexWidth1600.link.c
|
226
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-AVX2.s
|
227
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-SnP.h
|
228
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times2-SIMD128.c
|
229
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times2-SnP.h
|
230
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times4-SIMD256.c
|
231
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times4-SnP.h
|
232
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times8-SnP.h
|
233
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-times8-on4.c
|
234
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakP-1600-unrolling.macros
|
235
|
+
ext/digest/kangarootwelve/keccak/haswell/KeccakSpongeWidth1600.link.c
|
236
|
+
ext/digest/kangarootwelve/keccak/haswell/PlSnP-Fallback.inc
|
237
|
+
ext/digest/kangarootwelve/keccak/haswell/SIMD128-config.h
|
238
|
+
ext/digest/kangarootwelve/keccak/haswell/SIMD256-config.h
|
239
|
+
ext/digest/kangarootwelve/keccak/haswell/ext.link.c
|
240
|
+
ext/digest/kangarootwelve/keccak/nehalem/KangarooTwelve.link.c
|
241
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakDuplexWidth1600.link.c
|
242
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-64.macros
|
243
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-SnP.h
|
244
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-opt64.c
|
245
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-opt64-config.h
|
246
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times2-SIMD128.c
|
247
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times2-SnP.h
|
248
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times4-SnP.h
|
249
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times4-on2.c
|
250
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times8-SnP.h
|
251
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-times8-on2.c
|
252
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakP-1600-unrolling.macros
|
253
|
+
ext/digest/kangarootwelve/keccak/nehalem/KeccakSpongeWidth1600.link.c
|
254
|
+
ext/digest/kangarootwelve/keccak/nehalem/PlSnP-Fallback.inc
|
255
|
+
ext/digest/kangarootwelve/keccak/nehalem/SIMD128-config.h
|
256
|
+
ext/digest/kangarootwelve/keccak/nehalem/SnP-Relaned.h
|
257
|
+
ext/digest/kangarootwelve/keccak/nehalem/ext.link.c
|
258
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KangarooTwelve.link.c
|
259
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakDuplexWidth1600.link.c
|
260
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-SnP.h
|
261
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-reference.h
|
262
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-reference32BI.c
|
263
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times2-SnP.h
|
264
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times2-on1.c
|
265
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times4-SnP.h
|
266
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times4-on1.c
|
267
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times8-SnP.h
|
268
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakP-1600-times8-on1.c
|
269
|
+
ext/digest/kangarootwelve/keccak/reference32bits/KeccakSpongeWidth1600.link.c
|
270
|
+
ext/digest/kangarootwelve/keccak/reference32bits/PlSnP-Fallback.inc
|
271
|
+
ext/digest/kangarootwelve/keccak/reference32bits/displayIntermediateValues.c
|
272
|
+
ext/digest/kangarootwelve/keccak/reference32bits/displayIntermediateValues.h
|
273
|
+
ext/digest/kangarootwelve/keccak/reference32bits/ext.link.c
|
274
|
+
ext/digest/kangarootwelve/keccak/reference/KangarooTwelve.link.c
|
275
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakDuplexWidth1600.link.c
|
276
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-SnP.h
|
277
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-reference.c
|
278
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-reference.h
|
279
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times2-SnP.h
|
280
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times2-on1.c
|
281
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times4-SnP.h
|
282
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times4-on1.c
|
283
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times8-SnP.h
|
284
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakP-1600-times8-on1.c
|
285
|
+
ext/digest/kangarootwelve/keccak/reference/KeccakSpongeWidth1600.link.c
|
286
|
+
ext/digest/kangarootwelve/keccak/reference/PlSnP-Fallback.inc
|
287
|
+
ext/digest/kangarootwelve/keccak/reference/displayIntermediateValues.c
|
288
|
+
ext/digest/kangarootwelve/keccak/reference/displayIntermediateValues.h
|
289
|
+
ext/digest/kangarootwelve/keccak/reference/ext.link.c
|
290
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KangarooTwelve.link.c
|
291
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakDuplexWidth1600.link.c
|
292
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-64.macros
|
293
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-SnP.h
|
294
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-opt64.c
|
295
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-opt64-config.h
|
296
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times2-SIMD128.c
|
297
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times2-SnP.h
|
298
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times4-SnP.h
|
299
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times4-on2.c
|
300
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times8-SnP.h
|
301
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-times8-on2.c
|
302
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakP-1600-unrolling.macros
|
303
|
+
ext/digest/kangarootwelve/keccak/sandybridge/KeccakSpongeWidth1600.link.c
|
304
|
+
ext/digest/kangarootwelve/keccak/sandybridge/PlSnP-Fallback.inc
|
305
|
+
ext/digest/kangarootwelve/keccak/sandybridge/SIMD128-config.h
|
306
|
+
ext/digest/kangarootwelve/keccak/sandybridge/SnP-Relaned.h
|
307
|
+
ext/digest/kangarootwelve/keccak/sandybridge/ext.link.c
|
308
|
+
ext/digest/kangarootwelve/keccak/skylakex/KangarooTwelve.link.c
|
309
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakDuplexWidth1600.link.c
|
310
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-AVX512.c
|
311
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-AVX512-config.h
|
312
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-SnP.h
|
313
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times2-SIMD512.c
|
314
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times2-SnP.h
|
315
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times4-SIMD512.c
|
316
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times4-SnP.h
|
317
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times8-SIMD512.c
|
318
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakP-1600-times8-SnP.h
|
319
|
+
ext/digest/kangarootwelve/keccak/skylakex/KeccakSpongeWidth1600.link.c
|
320
|
+
ext/digest/kangarootwelve/keccak/skylakex/SIMD512-2-config.h
|
321
|
+
ext/digest/kangarootwelve/keccak/skylakex/SIMD512-4-config.h
|
322
|
+
ext/digest/kangarootwelve/keccak/skylakex/SIMD512-config.h
|
323
|
+
ext/digest/kangarootwelve/keccak/skylakex/ext.link.c
|
324
|
+
ext/digest/kangarootwelve/ext.c
|
325
|
+
lib/digest/kangarootwelve/version.rb
|
326
|
+
test/test.rb
|
327
|
+
}
|
23
328
|
|
24
|
-
spec.
|
25
|
-
spec.
|
26
|
-
spec.
|
329
|
+
spec.executables = []
|
330
|
+
spec.test_files = ['test/test.rb']
|
331
|
+
spec.require_paths = ['lib']
|
332
|
+
|
333
|
+
spec.add_development_dependency 'rake'
|
334
|
+
spec.add_development_dependency 'rake-compiler', '~> 1.0'
|
335
|
+
spec.add_development_dependency 'minitest', '~> 5.8'
|
27
336
|
|
28
337
|
spec.extensions = %w[ext/digest/kangarootwelve/extconf.rb]
|
29
338
|
end
|