react-native-quick-crypto 1.0.0-beta.9 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/QuickCrypto.podspec +156 -8
- package/README.md +14 -27
- package/android/CMakeLists.txt +64 -7
- package/android/build.gradle +12 -2
- package/android/src/main/java/com/margelo/nitro/quickcrypto/QuickCryptoPackage.java +0 -2
- package/app.plugin.js +3 -0
- package/cpp/blake3/HybridBlake3.cpp +118 -0
- package/cpp/blake3/HybridBlake3.hpp +35 -0
- package/cpp/cipher/CCMCipher.cpp +199 -0
- package/cpp/cipher/CCMCipher.hpp +26 -0
- package/cpp/cipher/ChaCha20Cipher.cpp +97 -0
- package/cpp/cipher/ChaCha20Cipher.hpp +25 -0
- package/cpp/cipher/ChaCha20Poly1305Cipher.cpp +170 -0
- package/cpp/cipher/ChaCha20Poly1305Cipher.hpp +30 -0
- package/cpp/cipher/GCMCipher.cpp +68 -0
- package/cpp/cipher/GCMCipher.hpp +14 -0
- package/cpp/cipher/HybridCipher.cpp +323 -0
- package/cpp/cipher/HybridCipher.hpp +68 -0
- package/cpp/cipher/HybridCipherFactory.hpp +105 -0
- package/cpp/cipher/HybridRsaCipher.cpp +367 -0
- package/cpp/cipher/HybridRsaCipher.hpp +29 -0
- package/cpp/cipher/OCBCipher.cpp +55 -0
- package/cpp/cipher/OCBCipher.hpp +19 -0
- package/cpp/cipher/XSalsa20Cipher.cpp +61 -0
- package/cpp/cipher/XSalsa20Cipher.hpp +33 -0
- package/cpp/ec/HybridEcKeyPair.cpp +428 -0
- package/cpp/ec/HybridEcKeyPair.hpp +48 -0
- package/cpp/ed25519/HybridEdKeyPair.cpp +228 -98
- package/cpp/ed25519/HybridEdKeyPair.hpp +42 -56
- package/cpp/hash/HybridHash.cpp +185 -0
- package/cpp/hash/HybridHash.hpp +43 -0
- package/cpp/hmac/HybridHmac.cpp +95 -0
- package/cpp/hmac/HybridHmac.hpp +31 -0
- package/cpp/keys/HybridKeyObjectHandle.cpp +757 -0
- package/cpp/keys/HybridKeyObjectHandle.hpp +51 -0
- package/cpp/keys/KeyObjectData.cpp +268 -0
- package/cpp/keys/KeyObjectData.hpp +71 -0
- package/cpp/keys/node.h +5 -0
- package/cpp/mldsa/HybridMlDsaKeyPair.cpp +264 -0
- package/cpp/mldsa/HybridMlDsaKeyPair.hpp +47 -0
- package/cpp/pbkdf2/HybridPbkdf2.cpp +34 -55
- package/cpp/pbkdf2/HybridPbkdf2.hpp +5 -16
- package/cpp/random/HybridRandom.cpp +6 -17
- package/cpp/random/HybridRandom.hpp +5 -6
- package/cpp/rsa/HybridRsaKeyPair.cpp +154 -0
- package/cpp/rsa/HybridRsaKeyPair.hpp +43 -0
- package/cpp/sign/HybridSignHandle.cpp +266 -0
- package/cpp/sign/HybridSignHandle.hpp +36 -0
- package/cpp/sign/HybridVerifyHandle.cpp +227 -0
- package/cpp/sign/HybridVerifyHandle.hpp +36 -0
- package/cpp/sign/SignUtils.hpp +108 -0
- package/cpp/utils/Macros.hpp +68 -0
- package/cpp/utils/Utils.hpp +43 -2
- package/cpp/utils/base64.h +309 -0
- package/deps/blake3/.cargo/config.toml +2 -0
- package/deps/blake3/.git-blame-ignore-revs +2 -0
- package/deps/blake3/.github/workflows/build_b3sum.py +38 -0
- package/deps/blake3/.github/workflows/ci.yml +491 -0
- package/deps/blake3/.github/workflows/tag.yml +43 -0
- package/deps/blake3/.github/workflows/upload_github_release_asset.py +73 -0
- package/deps/blake3/CONTRIBUTING.md +31 -0
- package/deps/blake3/Cargo.toml +135 -0
- package/deps/blake3/LICENSE_A2 +202 -0
- package/deps/blake3/LICENSE_A2LLVM +219 -0
- package/deps/blake3/LICENSE_CC0 +121 -0
- package/deps/blake3/README.md +229 -0
- package/deps/blake3/b3sum/Cargo.lock +513 -0
- package/deps/blake3/b3sum/Cargo.toml +26 -0
- package/deps/blake3/b3sum/README.md +72 -0
- package/deps/blake3/b3sum/src/main.rs +564 -0
- package/deps/blake3/b3sum/src/unit_tests.rs +235 -0
- package/deps/blake3/b3sum/tests/cli_tests.rs +680 -0
- package/deps/blake3/b3sum/what_does_check_do.md +176 -0
- package/deps/blake3/benches/bench.rs +623 -0
- package/deps/blake3/build.rs +389 -0
- package/deps/blake3/c/CMakeLists.txt +383 -0
- package/deps/blake3/c/CMakePresets.json +73 -0
- package/deps/blake3/c/Makefile.testing +82 -0
- package/deps/blake3/c/README.md +403 -0
- package/deps/blake3/c/blake3-config.cmake.in +14 -0
- package/deps/blake3/c/blake3.c +650 -0
- package/deps/blake3/c/blake3.h +86 -0
- package/deps/blake3/c/blake3_avx2.c +326 -0
- package/deps/blake3/c/blake3_avx2_x86-64_unix.S +1815 -0
- package/deps/blake3/c/blake3_avx2_x86-64_windows_gnu.S +1817 -0
- package/deps/blake3/c/blake3_avx2_x86-64_windows_msvc.asm +1828 -0
- package/deps/blake3/c/blake3_avx512.c +1388 -0
- package/deps/blake3/c/blake3_avx512_x86-64_unix.S +4824 -0
- package/deps/blake3/c/blake3_avx512_x86-64_windows_gnu.S +2615 -0
- package/deps/blake3/c/blake3_avx512_x86-64_windows_msvc.asm +2634 -0
- package/deps/blake3/c/blake3_c_rust_bindings/Cargo.toml +32 -0
- package/deps/blake3/c/blake3_c_rust_bindings/README.md +4 -0
- package/deps/blake3/c/blake3_c_rust_bindings/benches/bench.rs +477 -0
- package/deps/blake3/c/blake3_c_rust_bindings/build.rs +253 -0
- package/deps/blake3/c/blake3_c_rust_bindings/cross_test.sh +31 -0
- package/deps/blake3/c/blake3_c_rust_bindings/src/lib.rs +333 -0
- package/deps/blake3/c/blake3_c_rust_bindings/src/test.rs +696 -0
- package/deps/blake3/c/blake3_dispatch.c +332 -0
- package/deps/blake3/c/blake3_impl.h +333 -0
- package/deps/blake3/c/blake3_neon.c +366 -0
- package/deps/blake3/c/blake3_portable.c +160 -0
- package/deps/blake3/c/blake3_sse2.c +566 -0
- package/deps/blake3/c/blake3_sse2_x86-64_unix.S +2291 -0
- package/deps/blake3/c/blake3_sse2_x86-64_windows_gnu.S +2332 -0
- package/deps/blake3/c/blake3_sse2_x86-64_windows_msvc.asm +2350 -0
- package/deps/blake3/c/blake3_sse41.c +560 -0
- package/deps/blake3/c/blake3_sse41_x86-64_unix.S +2028 -0
- package/deps/blake3/c/blake3_sse41_x86-64_windows_gnu.S +2069 -0
- package/deps/blake3/c/blake3_sse41_x86-64_windows_msvc.asm +2089 -0
- package/deps/blake3/c/blake3_tbb.cpp +37 -0
- package/deps/blake3/c/dependencies/CMakeLists.txt +3 -0
- package/deps/blake3/c/dependencies/tbb/CMakeLists.txt +28 -0
- package/deps/blake3/c/example.c +36 -0
- package/deps/blake3/c/example_tbb.c +57 -0
- package/deps/blake3/c/libblake3.pc.in +12 -0
- package/deps/blake3/c/main.c +166 -0
- package/deps/blake3/c/test.py +97 -0
- package/deps/blake3/media/B3.svg +70 -0
- package/deps/blake3/media/BLAKE3.svg +85 -0
- package/deps/blake3/media/speed.svg +1474 -0
- package/deps/blake3/reference_impl/Cargo.toml +8 -0
- package/deps/blake3/reference_impl/README.md +14 -0
- package/deps/blake3/reference_impl/reference_impl.rs +374 -0
- package/deps/blake3/src/ffi_avx2.rs +65 -0
- package/deps/blake3/src/ffi_avx512.rs +169 -0
- package/deps/blake3/src/ffi_neon.rs +82 -0
- package/deps/blake3/src/ffi_sse2.rs +126 -0
- package/deps/blake3/src/ffi_sse41.rs +126 -0
- package/deps/blake3/src/guts.rs +60 -0
- package/deps/blake3/src/hazmat.rs +704 -0
- package/deps/blake3/src/io.rs +64 -0
- package/deps/blake3/src/join.rs +92 -0
- package/deps/blake3/src/lib.rs +1835 -0
- package/deps/blake3/src/platform.rs +587 -0
- package/deps/blake3/src/portable.rs +198 -0
- package/deps/blake3/src/rust_avx2.rs +474 -0
- package/deps/blake3/src/rust_sse2.rs +775 -0
- package/deps/blake3/src/rust_sse41.rs +766 -0
- package/deps/blake3/src/test.rs +1049 -0
- package/deps/blake3/src/traits.rs +227 -0
- package/deps/blake3/src/wasm32_simd.rs +794 -0
- package/deps/blake3/test_vectors/Cargo.toml +19 -0
- package/deps/blake3/test_vectors/cross_test.sh +25 -0
- package/deps/blake3/test_vectors/src/bin/generate.rs +4 -0
- package/deps/blake3/test_vectors/src/lib.rs +350 -0
- package/deps/blake3/test_vectors/test_vectors.json +217 -0
- package/deps/blake3/tools/compiler_version/Cargo.toml +7 -0
- package/deps/blake3/tools/compiler_version/build.rs +6 -0
- package/deps/blake3/tools/compiler_version/src/main.rs +27 -0
- package/deps/blake3/tools/instruction_set_support/Cargo.toml +6 -0
- package/deps/blake3/tools/instruction_set_support/src/main.rs +10 -0
- package/deps/blake3/tools/release.md +16 -0
- package/deps/fastpbkdf2/fastpbkdf2.c +5 -1
- package/deps/ncrypto/.bazelignore +4 -0
- package/deps/ncrypto/.bazelrc +2 -0
- package/deps/ncrypto/.bazelversion +1 -0
- package/deps/ncrypto/.clang-format +111 -0
- package/deps/ncrypto/.github/workflows/bazel.yml +58 -0
- package/deps/ncrypto/.github/workflows/linter.yml +38 -0
- package/deps/ncrypto/.github/workflows/macos.yml +43 -0
- package/deps/ncrypto/.github/workflows/ubuntu.yml +46 -0
- package/deps/ncrypto/.github/workflows/visual-studio.yml +49 -0
- package/deps/ncrypto/.python-version +1 -0
- package/deps/ncrypto/BUILD.bazel +36 -0
- package/deps/ncrypto/CMakeLists.txt +55 -0
- package/deps/ncrypto/LICENSE +21 -0
- package/deps/ncrypto/MODULE.bazel +1 -0
- package/deps/ncrypto/MODULE.bazel.lock +280 -0
- package/deps/ncrypto/README.md +18 -0
- package/deps/ncrypto/WORKSPACE +15 -0
- package/deps/ncrypto/cmake/CPM.cmake +1225 -0
- package/deps/ncrypto/cmake/ncrypto-flags.cmake +16 -0
- package/deps/ncrypto/include/dh-primes.h +67 -0
- package/deps/ncrypto/include/ncrypto.h +1897 -0
- package/deps/ncrypto/patches/0001-Expose-libdecrepit-so-NodeJS-can-use-it-for-ncrypto.patch +28 -0
- package/deps/ncrypto/pyproject.toml +38 -0
- package/deps/ncrypto/src/CMakeLists.txt +15 -0
- package/deps/ncrypto/src/engine.cpp +93 -0
- package/deps/ncrypto/src/ncrypto.cpp +5613 -0
- package/deps/ncrypto/tests/BUILD.bazel +9 -0
- package/deps/ncrypto/tests/CMakeLists.txt +7 -0
- package/deps/ncrypto/tests/basic.cpp +86 -0
- package/deps/ncrypto/tools/run-clang-format.sh +42 -0
- package/lib/commonjs/blake3.js +98 -0
- package/lib/commonjs/blake3.js.map +1 -0
- package/lib/commonjs/cipher.js +180 -0
- package/lib/commonjs/cipher.js.map +1 -0
- package/lib/commonjs/constants.js +32 -0
- package/lib/commonjs/constants.js.map +1 -0
- package/lib/commonjs/ec.js +480 -0
- package/lib/commonjs/ec.js.map +1 -0
- package/lib/commonjs/ed.js +214 -2
- package/lib/commonjs/ed.js.map +1 -1
- package/lib/commonjs/expo-plugin/@types.js +2 -0
- package/lib/commonjs/expo-plugin/@types.js.map +1 -0
- package/lib/commonjs/expo-plugin/withRNQC.js +25 -0
- package/lib/commonjs/expo-plugin/withRNQC.js.map +1 -0
- package/lib/commonjs/expo-plugin/withSodiumAndroid.js +25 -0
- package/lib/commonjs/expo-plugin/withSodiumAndroid.js.map +1 -0
- package/lib/commonjs/expo-plugin/withSodiumIos.js +26 -0
- package/lib/commonjs/expo-plugin/withSodiumIos.js.map +1 -0
- package/lib/commonjs/expo-plugin/withXCode.js +51 -0
- package/lib/commonjs/expo-plugin/withXCode.js.map +1 -0
- package/lib/commonjs/hash.js +215 -0
- package/lib/commonjs/hash.js.map +1 -0
- package/lib/commonjs/hmac.js +109 -0
- package/lib/commonjs/hmac.js.map +1 -0
- package/lib/commonjs/index.js +102 -24
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/keys/classes.js +115 -52
- package/lib/commonjs/keys/classes.js.map +1 -1
- package/lib/commonjs/keys/generateKeyPair.js +141 -144
- package/lib/commonjs/keys/generateKeyPair.js.map +1 -1
- package/lib/commonjs/keys/index.js +229 -0
- package/lib/commonjs/keys/index.js.map +1 -1
- package/lib/commonjs/keys/publicCipher.js +152 -0
- package/lib/commonjs/keys/publicCipher.js.map +1 -0
- package/lib/commonjs/keys/signVerify.js +178 -39
- package/lib/commonjs/keys/signVerify.js.map +1 -1
- package/lib/commonjs/keys/utils.js +18 -13
- package/lib/commonjs/keys/utils.js.map +1 -1
- package/lib/commonjs/mldsa.js +69 -0
- package/lib/commonjs/mldsa.js.map +1 -0
- package/lib/commonjs/pbkdf2.js.map +1 -1
- package/lib/commonjs/random.js +6 -0
- package/lib/commonjs/random.js.map +1 -1
- package/lib/commonjs/rsa.js +202 -0
- package/lib/commonjs/rsa.js.map +1 -0
- package/lib/commonjs/specs/blake3.nitro.js +6 -0
- package/lib/commonjs/specs/blake3.nitro.js.map +1 -0
- package/lib/commonjs/specs/cipher.nitro.js +6 -0
- package/lib/commonjs/specs/cipher.nitro.js.map +1 -0
- package/lib/commonjs/specs/ecKeyPair.nitro.js +6 -0
- package/lib/commonjs/specs/ecKeyPair.nitro.js.map +1 -0
- package/lib/commonjs/specs/hash.nitro.js +6 -0
- package/lib/commonjs/specs/hash.nitro.js.map +1 -0
- package/lib/commonjs/specs/hmac.nitro.js +6 -0
- package/lib/commonjs/specs/hmac.nitro.js.map +1 -0
- package/lib/commonjs/specs/mlDsaKeyPair.nitro.js +6 -0
- package/lib/commonjs/specs/mlDsaKeyPair.nitro.js.map +1 -0
- package/lib/commonjs/specs/rsaCipher.nitro.js +6 -0
- package/lib/commonjs/specs/rsaCipher.nitro.js.map +1 -0
- package/lib/commonjs/specs/rsaKeyPair.nitro.js +6 -0
- package/lib/commonjs/specs/rsaKeyPair.nitro.js.map +1 -0
- package/lib/commonjs/specs/sign.nitro.js +6 -0
- package/lib/commonjs/specs/sign.nitro.js.map +1 -0
- package/lib/commonjs/subtle.js +1092 -0
- package/lib/commonjs/subtle.js.map +1 -0
- package/lib/commonjs/utils/cipher.js +64 -0
- package/lib/commonjs/utils/cipher.js.map +1 -0
- package/lib/commonjs/utils/conversion.js +44 -5
- package/lib/commonjs/utils/conversion.js.map +1 -1
- package/lib/commonjs/utils/hashnames.js +2 -1
- package/lib/commonjs/utils/hashnames.js.map +1 -1
- package/lib/commonjs/utils/index.js +11 -0
- package/lib/commonjs/utils/index.js.map +1 -1
- package/lib/commonjs/utils/noble.js +82 -0
- package/lib/commonjs/utils/noble.js.map +1 -0
- package/lib/commonjs/utils/types.js +32 -17
- package/lib/commonjs/utils/types.js.map +1 -1
- package/lib/commonjs/utils/validation.js +74 -1
- package/lib/commonjs/utils/validation.js.map +1 -1
- package/lib/module/blake3.js +90 -0
- package/lib/module/blake3.js.map +1 -0
- package/lib/module/cipher.js +173 -0
- package/lib/module/cipher.js.map +1 -0
- package/lib/module/constants.js +28 -0
- package/lib/module/constants.js.map +1 -0
- package/lib/module/ec.js +470 -0
- package/lib/module/ec.js.map +1 -0
- package/lib/module/ed.js +212 -3
- package/lib/module/ed.js.map +1 -1
- package/lib/module/expo-plugin/@types.js +2 -0
- package/lib/module/expo-plugin/@types.js.map +1 -0
- package/lib/module/expo-plugin/withRNQC.js +21 -0
- package/lib/module/expo-plugin/withRNQC.js.map +1 -0
- package/lib/module/expo-plugin/withSodiumAndroid.js +20 -0
- package/lib/module/expo-plugin/withSodiumAndroid.js.map +1 -0
- package/lib/module/expo-plugin/withSodiumIos.js +20 -0
- package/lib/module/expo-plugin/withSodiumIos.js.map +1 -0
- package/lib/module/expo-plugin/withXCode.js +46 -0
- package/lib/module/expo-plugin/withXCode.js.map +1 -0
- package/lib/module/hash.js +207 -0
- package/lib/module/hash.js.map +1 -0
- package/lib/module/hmac.js +104 -0
- package/lib/module/hmac.js.map +1 -0
- package/lib/module/index.js +21 -21
- package/lib/module/index.js.map +1 -1
- package/lib/module/keys/classes.js +112 -49
- package/lib/module/keys/classes.js.map +1 -1
- package/lib/module/keys/generateKeyPair.js +134 -143
- package/lib/module/keys/generateKeyPair.js.map +1 -1
- package/lib/module/keys/index.js +161 -22
- package/lib/module/keys/index.js.map +1 -1
- package/lib/module/keys/publicCipher.js +145 -0
- package/lib/module/keys/publicCipher.js.map +1 -0
- package/lib/module/keys/signVerify.js +170 -39
- package/lib/module/keys/signVerify.js.map +1 -1
- package/lib/module/keys/utils.js +16 -12
- package/lib/module/keys/utils.js.map +1 -1
- package/lib/module/mldsa.js +63 -0
- package/lib/module/mldsa.js.map +1 -0
- package/lib/module/pbkdf2.js.map +1 -1
- package/lib/module/random.js +6 -0
- package/lib/module/random.js.map +1 -1
- package/lib/module/rsa.js +194 -0
- package/lib/module/rsa.js.map +1 -0
- package/lib/module/specs/blake3.nitro.js +4 -0
- package/lib/module/specs/blake3.nitro.js.map +1 -0
- package/lib/module/specs/cipher.nitro.js +4 -0
- package/lib/module/specs/cipher.nitro.js.map +1 -0
- package/lib/module/specs/ecKeyPair.nitro.js +4 -0
- package/lib/module/specs/ecKeyPair.nitro.js.map +1 -0
- package/lib/module/specs/hash.nitro.js +4 -0
- package/lib/module/specs/hash.nitro.js.map +1 -0
- package/lib/module/specs/hmac.nitro.js +4 -0
- package/lib/module/specs/hmac.nitro.js.map +1 -0
- package/lib/module/specs/mlDsaKeyPair.nitro.js +4 -0
- package/lib/module/specs/mlDsaKeyPair.nitro.js.map +1 -0
- package/lib/module/specs/rsaCipher.nitro.js +4 -0
- package/lib/module/specs/rsaCipher.nitro.js.map +1 -0
- package/lib/module/specs/rsaKeyPair.nitro.js +4 -0
- package/lib/module/specs/rsaKeyPair.nitro.js.map +1 -0
- package/lib/module/specs/sign.nitro.js +4 -0
- package/lib/module/specs/sign.nitro.js.map +1 -0
- package/lib/module/subtle.js +1087 -0
- package/lib/module/subtle.js.map +1 -0
- package/lib/module/utils/cipher.js +56 -0
- package/lib/module/utils/cipher.js.map +1 -0
- package/lib/module/utils/conversion.js +26 -5
- package/lib/module/utils/conversion.js.map +1 -1
- package/lib/module/utils/hashnames.js +2 -1
- package/lib/module/utils/hashnames.js.map +1 -1
- package/lib/module/utils/index.js +1 -0
- package/lib/module/utils/index.js.map +1 -1
- package/lib/module/utils/noble.js +76 -0
- package/lib/module/utils/noble.js.map +1 -0
- package/lib/module/utils/types.js +32 -17
- package/lib/module/utils/types.js.map +1 -1
- package/lib/module/utils/validation.js +69 -1
- package/lib/module/utils/validation.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/typescript/blake3.d.ts +33 -0
- package/lib/typescript/blake3.d.ts.map +1 -0
- package/lib/typescript/cipher.d.ts +60 -0
- package/lib/typescript/cipher.d.ts.map +1 -0
- package/lib/typescript/constants.d.ts +21 -0
- package/lib/typescript/constants.d.ts.map +1 -0
- package/lib/typescript/ec.d.ts +22 -0
- package/lib/typescript/ec.d.ts.map +1 -0
- package/lib/typescript/ed.d.ts +28 -1
- package/lib/typescript/ed.d.ts.map +1 -1
- package/lib/typescript/expo-plugin/@types.d.ts +8 -0
- package/lib/typescript/expo-plugin/@types.d.ts.map +1 -0
- package/lib/typescript/expo-plugin/withRNQC.d.ts +4 -0
- package/lib/typescript/expo-plugin/withRNQC.d.ts.map +1 -0
- package/lib/typescript/expo-plugin/withSodiumAndroid.d.ts +4 -0
- package/lib/typescript/expo-plugin/withSodiumAndroid.d.ts.map +1 -0
- package/lib/typescript/expo-plugin/withSodiumIos.d.ts +4 -0
- package/lib/typescript/expo-plugin/withSodiumIos.d.ts.map +1 -0
- package/lib/typescript/expo-plugin/withXCode.d.ts +9 -0
- package/lib/typescript/expo-plugin/withXCode.d.ts.map +1 -0
- package/lib/typescript/hash.d.ts +122 -0
- package/lib/typescript/hash.d.ts.map +1 -0
- package/lib/typescript/hmac.d.ts +66 -0
- package/lib/typescript/hmac.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +102 -10
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/keys/classes.d.ts +52 -8
- package/lib/typescript/keys/classes.d.ts.map +1 -1
- package/lib/typescript/keys/generateKeyPair.d.ts +5 -0
- package/lib/typescript/keys/generateKeyPair.d.ts.map +1 -1
- package/lib/typescript/keys/index.d.ts +22 -2
- package/lib/typescript/keys/index.d.ts.map +1 -1
- package/lib/typescript/keys/publicCipher.d.ts +20 -0
- package/lib/typescript/keys/publicCipher.d.ts.map +1 -0
- package/lib/typescript/keys/signVerify.d.ts +28 -0
- package/lib/typescript/keys/signVerify.d.ts.map +1 -1
- package/lib/typescript/keys/utils.d.ts +3 -1
- package/lib/typescript/keys/utils.d.ts.map +1 -1
- package/lib/typescript/mldsa.d.ts +18 -0
- package/lib/typescript/mldsa.d.ts.map +1 -0
- package/lib/typescript/pbkdf2.d.ts +1 -1
- package/lib/typescript/pbkdf2.d.ts.map +1 -1
- package/lib/typescript/random.d.ts +6 -0
- package/lib/typescript/random.d.ts.map +1 -1
- package/lib/typescript/rsa.d.ts +19 -0
- package/lib/typescript/rsa.d.ts.map +1 -0
- package/lib/typescript/specs/blake3.nitro.d.ts +15 -0
- package/lib/typescript/specs/blake3.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/cipher.nitro.d.ts +29 -0
- package/lib/typescript/specs/cipher.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/ecKeyPair.nitro.d.ts +20 -0
- package/lib/typescript/specs/ecKeyPair.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/edKeyPair.nitro.d.ts +1 -0
- package/lib/typescript/specs/edKeyPair.nitro.d.ts.map +1 -1
- package/lib/typescript/specs/hash.nitro.d.ts +13 -0
- package/lib/typescript/specs/hash.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/hmac.nitro.d.ts +10 -0
- package/lib/typescript/specs/hmac.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/keyObjectHandle.nitro.d.ts +1 -1
- package/lib/typescript/specs/keyObjectHandle.nitro.d.ts.map +1 -1
- package/lib/typescript/specs/mlDsaKeyPair.nitro.d.ts +16 -0
- package/lib/typescript/specs/mlDsaKeyPair.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/rsaCipher.nitro.d.ts +44 -0
- package/lib/typescript/specs/rsaCipher.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/rsaKeyPair.nitro.d.ts +20 -0
- package/lib/typescript/specs/rsaKeyPair.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/sign.nitro.d.ts +19 -0
- package/lib/typescript/specs/sign.nitro.d.ts.map +1 -0
- package/lib/typescript/subtle.d.ts +17 -0
- package/lib/typescript/subtle.d.ts.map +1 -0
- package/lib/typescript/utils/cipher.d.ts +7 -0
- package/lib/typescript/utils/cipher.d.ts.map +1 -0
- package/lib/typescript/utils/conversion.d.ts +1 -0
- package/lib/typescript/utils/conversion.d.ts.map +1 -1
- package/lib/typescript/utils/hashnames.d.ts +3 -1
- package/lib/typescript/utils/hashnames.d.ts.map +1 -1
- package/lib/typescript/utils/index.d.ts +1 -0
- package/lib/typescript/utils/index.d.ts.map +1 -1
- package/lib/typescript/utils/noble.d.ts +19 -0
- package/lib/typescript/utils/noble.d.ts.map +1 -0
- package/lib/typescript/utils/types.d.ts +129 -25
- package/lib/typescript/utils/types.d.ts.map +1 -1
- package/lib/typescript/utils/validation.d.ts +5 -0
- package/lib/typescript/utils/validation.d.ts.map +1 -1
- package/nitrogen/generated/.gitattributes +1 -0
- package/nitrogen/generated/android/QuickCrypto+autolinking.cmake +31 -1
- package/nitrogen/generated/android/QuickCrypto+autolinking.gradle +1 -1
- package/nitrogen/generated/android/QuickCryptoOnLoad.cpp +125 -1
- package/nitrogen/generated/android/QuickCryptoOnLoad.hpp +1 -1
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/crypto/QuickCryptoOnLoad.kt +35 -0
- package/nitrogen/generated/ios/QuickCrypto+autolinking.rb +3 -1
- package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.cpp +1 -1
- package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.hpp +1 -1
- package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Umbrella.hpp +3 -3
- package/nitrogen/generated/ios/QuickCryptoAutolinking.mm +121 -1
- package/nitrogen/generated/ios/QuickCryptoAutolinking.swift +1 -1
- package/nitrogen/generated/shared/c++/AsymmetricKeyType.hpp +116 -0
- package/nitrogen/generated/shared/c++/CipherArgs.hpp +86 -0
- package/nitrogen/generated/shared/c++/HybridBlake3Spec.cpp +28 -0
- package/nitrogen/generated/shared/c++/HybridBlake3Spec.hpp +76 -0
- package/nitrogen/generated/shared/c++/HybridCipherFactorySpec.cpp +21 -0
- package/nitrogen/generated/shared/c++/HybridCipherFactorySpec.hpp +67 -0
- package/nitrogen/generated/shared/c++/HybridCipherSpec.cpp +28 -0
- package/nitrogen/generated/shared/c++/HybridCipherSpec.hpp +76 -0
- package/nitrogen/generated/shared/c++/HybridEcKeyPairSpec.cpp +29 -0
- package/nitrogen/generated/shared/c++/HybridEcKeyPairSpec.hpp +77 -0
- package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.cpp +2 -1
- package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.hpp +5 -4
- package/nitrogen/generated/shared/c++/HybridHashSpec.cpp +26 -0
- package/nitrogen/generated/shared/c++/HybridHashSpec.hpp +75 -0
- package/nitrogen/generated/shared/c++/HybridHmacSpec.cpp +23 -0
- package/nitrogen/generated/shared/c++/HybridHmacSpec.hpp +66 -0
- package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.cpp +1 -1
- package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.hpp +8 -8
- package/nitrogen/generated/shared/c++/HybridMlDsaKeyPairSpec.cpp +29 -0
- package/nitrogen/generated/shared/c++/HybridMlDsaKeyPairSpec.hpp +73 -0
- package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.cpp +1 -1
- package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.hpp +3 -3
- package/nitrogen/generated/shared/c++/HybridRandomSpec.cpp +1 -1
- package/nitrogen/generated/shared/c++/HybridRandomSpec.hpp +3 -3
- package/nitrogen/generated/shared/c++/HybridRsaCipherSpec.cpp +24 -0
- package/nitrogen/generated/shared/c++/HybridRsaCipherSpec.hpp +72 -0
- package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.cpp +29 -0
- package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.hpp +77 -0
- package/nitrogen/generated/shared/c++/HybridSignHandleSpec.cpp +23 -0
- package/nitrogen/generated/shared/c++/HybridSignHandleSpec.hpp +71 -0
- package/nitrogen/generated/shared/c++/HybridVerifyHandleSpec.cpp +23 -0
- package/nitrogen/generated/shared/c++/HybridVerifyHandleSpec.hpp +71 -0
- package/nitrogen/generated/shared/c++/JWK.hpp +17 -18
- package/nitrogen/generated/shared/c++/JWKkty.hpp +12 -14
- package/nitrogen/generated/shared/c++/JWKuse.hpp +8 -10
- package/nitrogen/generated/shared/c++/KFormatType.hpp +14 -16
- package/nitrogen/generated/shared/c++/KeyDetail.hpp +6 -7
- package/nitrogen/generated/shared/c++/KeyEncoding.hpp +15 -17
- package/nitrogen/generated/shared/c++/KeyObject.hpp +67 -0
- package/nitrogen/generated/shared/c++/KeyType.hpp +11 -13
- package/nitrogen/generated/shared/c++/KeyUsage.hpp +38 -24
- package/nitrogen/generated/shared/c++/NamedCurve.hpp +10 -12
- package/package.json +31 -23
- package/src/blake3.ts +123 -0
- package/src/cipher.ts +335 -0
- package/src/constants.ts +32 -0
- package/src/ec.ts +657 -0
- package/src/ed.ts +297 -13
- package/src/expo-plugin/@types.ts +7 -0
- package/src/expo-plugin/withRNQC.ts +23 -0
- package/src/expo-plugin/withSodiumAndroid.ts +24 -0
- package/src/expo-plugin/withSodiumIos.ts +30 -0
- package/src/expo-plugin/withXCode.ts +55 -0
- package/src/hash.ts +274 -0
- package/src/hmac.ts +135 -0
- package/src/index.ts +20 -20
- package/src/keys/classes.ts +157 -55
- package/src/keys/generateKeyPair.ts +177 -134
- package/src/keys/index.ts +226 -14
- package/src/keys/publicCipher.ts +229 -0
- package/src/keys/signVerify.ts +239 -39
- package/src/keys/utils.ts +24 -18
- package/src/mldsa.ts +125 -0
- package/src/pbkdf2.ts +1 -1
- package/src/random.ts +7 -0
- package/src/rsa.ts +310 -0
- package/src/specs/blake3.nitro.ts +12 -0
- package/src/specs/cipher.nitro.ts +25 -0
- package/src/specs/ecKeyPair.nitro.ts +38 -0
- package/src/specs/edKeyPair.nitro.ts +2 -0
- package/src/specs/hash.nitro.ts +10 -0
- package/src/specs/hmac.nitro.ts +7 -0
- package/src/specs/keyObjectHandle.nitro.ts +1 -1
- package/src/specs/mlDsaKeyPair.nitro.ts +29 -0
- package/src/specs/rsaCipher.nitro.ts +65 -0
- package/src/specs/rsaKeyPair.nitro.ts +33 -0
- package/src/specs/sign.nitro.ts +31 -0
- package/src/subtle.ts +1576 -0
- package/src/utils/cipher.ts +60 -0
- package/src/utils/conversion.ts +33 -4
- package/src/utils/hashnames.ts +4 -2
- package/src/utils/index.ts +1 -0
- package/src/utils/noble.ts +85 -0
- package/src/utils/types.ts +219 -31
- package/src/utils/validation.ts +96 -1
- package/lib/module/package.json +0 -1
- package/nitrogen/generated/android/QuickCryptoOnLoad.kt +0 -1
- package/nitrogen/generated/shared/c++/CFRGKeyPairType.hpp +0 -86
|
@@ -0,0 +1,696 @@
|
|
|
1
|
+
// Most of this code is duplicated from the root `blake3` crate. Perhaps we
|
|
2
|
+
// could share more of it in the future.
|
|
3
|
+
|
|
4
|
+
use crate::{BLOCK_LEN, CHUNK_LEN, OUT_LEN};
|
|
5
|
+
use arrayref::{array_mut_ref, array_ref};
|
|
6
|
+
use arrayvec::ArrayVec;
|
|
7
|
+
use core::usize;
|
|
8
|
+
use rand::prelude::*;
|
|
9
|
+
|
|
10
|
+
const CHUNK_START: u8 = 1 << 0;
|
|
11
|
+
const CHUNK_END: u8 = 1 << 1;
|
|
12
|
+
const PARENT: u8 = 1 << 2;
|
|
13
|
+
const ROOT: u8 = 1 << 3;
|
|
14
|
+
const KEYED_HASH: u8 = 1 << 4;
|
|
15
|
+
// const DERIVE_KEY_CONTEXT: u8 = 1 << 5;
|
|
16
|
+
// const DERIVE_KEY_MATERIAL: u8 = 1 << 6;
|
|
17
|
+
|
|
18
|
+
// Interesting input lengths to run tests on.
|
|
19
|
+
pub const TEST_CASES: &[usize] = &[
|
|
20
|
+
0,
|
|
21
|
+
1,
|
|
22
|
+
2,
|
|
23
|
+
3,
|
|
24
|
+
4,
|
|
25
|
+
5,
|
|
26
|
+
6,
|
|
27
|
+
7,
|
|
28
|
+
8,
|
|
29
|
+
BLOCK_LEN - 1,
|
|
30
|
+
BLOCK_LEN,
|
|
31
|
+
BLOCK_LEN + 1,
|
|
32
|
+
2 * BLOCK_LEN - 1,
|
|
33
|
+
2 * BLOCK_LEN,
|
|
34
|
+
2 * BLOCK_LEN + 1,
|
|
35
|
+
CHUNK_LEN - 1,
|
|
36
|
+
CHUNK_LEN,
|
|
37
|
+
CHUNK_LEN + 1,
|
|
38
|
+
2 * CHUNK_LEN,
|
|
39
|
+
2 * CHUNK_LEN + 1,
|
|
40
|
+
3 * CHUNK_LEN,
|
|
41
|
+
3 * CHUNK_LEN + 1,
|
|
42
|
+
4 * CHUNK_LEN,
|
|
43
|
+
4 * CHUNK_LEN + 1,
|
|
44
|
+
5 * CHUNK_LEN,
|
|
45
|
+
5 * CHUNK_LEN + 1,
|
|
46
|
+
6 * CHUNK_LEN,
|
|
47
|
+
6 * CHUNK_LEN + 1,
|
|
48
|
+
7 * CHUNK_LEN,
|
|
49
|
+
7 * CHUNK_LEN + 1,
|
|
50
|
+
8 * CHUNK_LEN,
|
|
51
|
+
8 * CHUNK_LEN + 1,
|
|
52
|
+
16 * CHUNK_LEN, // AVX512's bandwidth
|
|
53
|
+
31 * CHUNK_LEN, // 16 + 8 + 4 + 2 + 1
|
|
54
|
+
100 * CHUNK_LEN, // subtrees larger than MAX_SIMD_DEGREE chunks
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
pub const TEST_CASES_MAX: usize = 100 * CHUNK_LEN;
|
|
58
|
+
|
|
59
|
+
// There's a test to make sure these two are equal below.
|
|
60
|
+
pub const TEST_KEY: [u8; 32] = *b"whats the Elvish word for friend";
|
|
61
|
+
pub const TEST_KEY_WORDS: [u32; 8] = [
|
|
62
|
+
1952540791, 1752440947, 1816469605, 1752394102, 1919907616, 1868963940, 1919295602, 1684956521,
|
|
63
|
+
];
|
|
64
|
+
|
|
65
|
+
// Paint the input with a repeating byte pattern. We use a cycle length of 251,
|
|
66
|
+
// because that's the largest prime number less than 256. This makes it
|
|
67
|
+
// unlikely to swapping any two adjacent input blocks or chunks will give the
|
|
68
|
+
// same answer.
|
|
69
|
+
fn paint_test_input(buf: &mut [u8]) {
|
|
70
|
+
for (i, b) in buf.iter_mut().enumerate() {
|
|
71
|
+
*b = (i % 251) as u8;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
#[inline(always)]
|
|
76
|
+
fn le_bytes_from_words_32(words: &[u32; 8]) -> [u8; 32] {
|
|
77
|
+
let mut out = [0; 32];
|
|
78
|
+
*array_mut_ref!(out, 0 * 4, 4) = words[0].to_le_bytes();
|
|
79
|
+
*array_mut_ref!(out, 1 * 4, 4) = words[1].to_le_bytes();
|
|
80
|
+
*array_mut_ref!(out, 2 * 4, 4) = words[2].to_le_bytes();
|
|
81
|
+
*array_mut_ref!(out, 3 * 4, 4) = words[3].to_le_bytes();
|
|
82
|
+
*array_mut_ref!(out, 4 * 4, 4) = words[4].to_le_bytes();
|
|
83
|
+
*array_mut_ref!(out, 5 * 4, 4) = words[5].to_le_bytes();
|
|
84
|
+
*array_mut_ref!(out, 6 * 4, 4) = words[6].to_le_bytes();
|
|
85
|
+
*array_mut_ref!(out, 7 * 4, 4) = words[7].to_le_bytes();
|
|
86
|
+
out
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
type CompressInPlaceFn =
|
|
90
|
+
unsafe extern "C" fn(cv: *mut u32, block: *const u8, block_len: u8, counter: u64, flags: u8);
|
|
91
|
+
|
|
92
|
+
type CompressXofFn = unsafe extern "C" fn(
|
|
93
|
+
cv: *const u32,
|
|
94
|
+
block: *const u8,
|
|
95
|
+
block_len: u8,
|
|
96
|
+
counter: u64,
|
|
97
|
+
flags: u8,
|
|
98
|
+
out: *mut u8,
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
// A shared helper function for platform-specific tests.
|
|
102
|
+
pub fn test_compress_fn(compress_in_place_fn: CompressInPlaceFn, compress_xof_fn: CompressXofFn) {
|
|
103
|
+
let initial_state = TEST_KEY_WORDS;
|
|
104
|
+
let block_len: u8 = 61;
|
|
105
|
+
let mut block = [0; BLOCK_LEN];
|
|
106
|
+
paint_test_input(&mut block[..block_len as usize]);
|
|
107
|
+
// Use a counter with set bits in both 32-bit words.
|
|
108
|
+
let counter = (5u64 << 32) + 6;
|
|
109
|
+
let flags = CHUNK_END | ROOT | KEYED_HASH;
|
|
110
|
+
|
|
111
|
+
let mut portable_out = [0; 64];
|
|
112
|
+
unsafe {
|
|
113
|
+
crate::ffi::blake3_compress_xof_portable(
|
|
114
|
+
initial_state.as_ptr(),
|
|
115
|
+
block.as_ptr(),
|
|
116
|
+
block_len,
|
|
117
|
+
counter,
|
|
118
|
+
flags,
|
|
119
|
+
portable_out.as_mut_ptr(),
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
let mut test_state = initial_state;
|
|
124
|
+
unsafe {
|
|
125
|
+
compress_in_place_fn(
|
|
126
|
+
test_state.as_mut_ptr(),
|
|
127
|
+
block.as_ptr(),
|
|
128
|
+
block_len,
|
|
129
|
+
counter,
|
|
130
|
+
flags,
|
|
131
|
+
)
|
|
132
|
+
};
|
|
133
|
+
let test_state_bytes = le_bytes_from_words_32(&test_state);
|
|
134
|
+
let mut test_xof = [0; 64];
|
|
135
|
+
unsafe {
|
|
136
|
+
compress_xof_fn(
|
|
137
|
+
initial_state.as_ptr(),
|
|
138
|
+
block.as_ptr(),
|
|
139
|
+
block_len,
|
|
140
|
+
counter,
|
|
141
|
+
flags,
|
|
142
|
+
test_xof.as_mut_ptr(),
|
|
143
|
+
)
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
assert_eq!(&portable_out[..32], &test_state_bytes[..]);
|
|
147
|
+
assert_eq!(&portable_out[..], &test_xof[..]);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// Testing the portable implementation against itself is circular, but why not.
|
|
151
|
+
#[test]
|
|
152
|
+
fn test_compress_portable() {
|
|
153
|
+
test_compress_fn(
|
|
154
|
+
crate::ffi::blake3_compress_in_place_portable,
|
|
155
|
+
crate::ffi::blake3_compress_xof_portable,
|
|
156
|
+
);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
#[test]
|
|
160
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
161
|
+
fn test_compress_sse2() {
|
|
162
|
+
if !crate::sse2_detected() {
|
|
163
|
+
return;
|
|
164
|
+
}
|
|
165
|
+
test_compress_fn(
|
|
166
|
+
crate::ffi::x86::blake3_compress_in_place_sse2,
|
|
167
|
+
crate::ffi::x86::blake3_compress_xof_sse2,
|
|
168
|
+
);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
#[test]
|
|
172
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
173
|
+
fn test_compress_sse41() {
|
|
174
|
+
if !crate::sse41_detected() {
|
|
175
|
+
return;
|
|
176
|
+
}
|
|
177
|
+
test_compress_fn(
|
|
178
|
+
crate::ffi::x86::blake3_compress_in_place_sse41,
|
|
179
|
+
crate::ffi::x86::blake3_compress_xof_sse41,
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
#[test]
|
|
184
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
185
|
+
fn test_compress_avx512() {
|
|
186
|
+
if !crate::avx512_detected() {
|
|
187
|
+
return;
|
|
188
|
+
}
|
|
189
|
+
test_compress_fn(
|
|
190
|
+
crate::ffi::x86::blake3_compress_in_place_avx512,
|
|
191
|
+
crate::ffi::x86::blake3_compress_xof_avx512,
|
|
192
|
+
);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
type HashManyFn = unsafe extern "C" fn(
|
|
196
|
+
inputs: *const *const u8,
|
|
197
|
+
num_inputs: usize,
|
|
198
|
+
blocks: usize,
|
|
199
|
+
key: *const u32,
|
|
200
|
+
counter: u64,
|
|
201
|
+
increment_counter: bool,
|
|
202
|
+
flags: u8,
|
|
203
|
+
flags_start: u8,
|
|
204
|
+
flags_end: u8,
|
|
205
|
+
out: *mut u8,
|
|
206
|
+
);
|
|
207
|
+
|
|
208
|
+
// A shared helper function for platform-specific tests.
|
|
209
|
+
pub fn test_hash_many_fn(hash_many_fn: HashManyFn) {
|
|
210
|
+
// Test a few different initial counter values.
|
|
211
|
+
// - 0: The base case.
|
|
212
|
+
// - u32::MAX: The low word of the counter overflows for all inputs except the first.
|
|
213
|
+
// - i32::MAX: *No* overflow. But carry bugs in tricky SIMD code can screw this up, if you XOR
|
|
214
|
+
// when you're supposed to ANDNOT...
|
|
215
|
+
let initial_counters = [0, u32::MAX as u64, i32::MAX as u64];
|
|
216
|
+
for counter in initial_counters {
|
|
217
|
+
dbg!(counter);
|
|
218
|
+
|
|
219
|
+
// 31 (16 + 8 + 4 + 2 + 1) inputs
|
|
220
|
+
const NUM_INPUTS: usize = 31;
|
|
221
|
+
let mut input_buf = [0; CHUNK_LEN * NUM_INPUTS];
|
|
222
|
+
crate::test::paint_test_input(&mut input_buf);
|
|
223
|
+
|
|
224
|
+
// First hash chunks.
|
|
225
|
+
let mut chunks = ArrayVec::<&[u8; CHUNK_LEN], NUM_INPUTS>::new();
|
|
226
|
+
for i in 0..NUM_INPUTS {
|
|
227
|
+
chunks.push(array_ref!(input_buf, i * CHUNK_LEN, CHUNK_LEN));
|
|
228
|
+
}
|
|
229
|
+
let mut portable_chunks_out = [0; NUM_INPUTS * OUT_LEN];
|
|
230
|
+
unsafe {
|
|
231
|
+
crate::ffi::blake3_hash_many_portable(
|
|
232
|
+
chunks.as_ptr() as _,
|
|
233
|
+
chunks.len(),
|
|
234
|
+
CHUNK_LEN / BLOCK_LEN,
|
|
235
|
+
TEST_KEY_WORDS.as_ptr(),
|
|
236
|
+
counter,
|
|
237
|
+
true,
|
|
238
|
+
KEYED_HASH,
|
|
239
|
+
CHUNK_START,
|
|
240
|
+
CHUNK_END,
|
|
241
|
+
portable_chunks_out.as_mut_ptr(),
|
|
242
|
+
);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
let mut test_chunks_out = [0; NUM_INPUTS * OUT_LEN];
|
|
246
|
+
unsafe {
|
|
247
|
+
hash_many_fn(
|
|
248
|
+
chunks.as_ptr() as _,
|
|
249
|
+
chunks.len(),
|
|
250
|
+
CHUNK_LEN / BLOCK_LEN,
|
|
251
|
+
TEST_KEY_WORDS.as_ptr(),
|
|
252
|
+
counter,
|
|
253
|
+
true,
|
|
254
|
+
KEYED_HASH,
|
|
255
|
+
CHUNK_START,
|
|
256
|
+
CHUNK_END,
|
|
257
|
+
test_chunks_out.as_mut_ptr(),
|
|
258
|
+
);
|
|
259
|
+
}
|
|
260
|
+
for n in 0..NUM_INPUTS {
|
|
261
|
+
dbg!(n);
|
|
262
|
+
assert_eq!(
|
|
263
|
+
&portable_chunks_out[n * OUT_LEN..][..OUT_LEN],
|
|
264
|
+
&test_chunks_out[n * OUT_LEN..][..OUT_LEN]
|
|
265
|
+
);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
// Then hash parents.
|
|
269
|
+
let mut parents = ArrayVec::<&[u8; 2 * OUT_LEN], NUM_INPUTS>::new();
|
|
270
|
+
for i in 0..NUM_INPUTS {
|
|
271
|
+
parents.push(array_ref!(input_buf, i * 2 * OUT_LEN, 2 * OUT_LEN));
|
|
272
|
+
}
|
|
273
|
+
let mut portable_parents_out = [0; NUM_INPUTS * OUT_LEN];
|
|
274
|
+
unsafe {
|
|
275
|
+
crate::ffi::blake3_hash_many_portable(
|
|
276
|
+
parents.as_ptr() as _,
|
|
277
|
+
parents.len(),
|
|
278
|
+
1,
|
|
279
|
+
TEST_KEY_WORDS.as_ptr(),
|
|
280
|
+
counter,
|
|
281
|
+
false,
|
|
282
|
+
KEYED_HASH | PARENT,
|
|
283
|
+
0,
|
|
284
|
+
0,
|
|
285
|
+
portable_parents_out.as_mut_ptr(),
|
|
286
|
+
);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
let mut test_parents_out = [0; NUM_INPUTS * OUT_LEN];
|
|
290
|
+
unsafe {
|
|
291
|
+
hash_many_fn(
|
|
292
|
+
parents.as_ptr() as _,
|
|
293
|
+
parents.len(),
|
|
294
|
+
1,
|
|
295
|
+
TEST_KEY_WORDS.as_ptr(),
|
|
296
|
+
counter,
|
|
297
|
+
false,
|
|
298
|
+
KEYED_HASH | PARENT,
|
|
299
|
+
0,
|
|
300
|
+
0,
|
|
301
|
+
test_parents_out.as_mut_ptr(),
|
|
302
|
+
);
|
|
303
|
+
}
|
|
304
|
+
for n in 0..NUM_INPUTS {
|
|
305
|
+
dbg!(n);
|
|
306
|
+
assert_eq!(
|
|
307
|
+
&portable_parents_out[n * OUT_LEN..][..OUT_LEN],
|
|
308
|
+
&test_parents_out[n * OUT_LEN..][..OUT_LEN]
|
|
309
|
+
);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
// Testing the portable implementation against itself is circular, but why not.
|
|
315
|
+
#[test]
|
|
316
|
+
fn test_hash_many_portable() {
|
|
317
|
+
test_hash_many_fn(crate::ffi::blake3_hash_many_portable);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
#[test]
|
|
321
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
322
|
+
fn test_hash_many_sse2() {
|
|
323
|
+
if !crate::sse2_detected() {
|
|
324
|
+
return;
|
|
325
|
+
}
|
|
326
|
+
test_hash_many_fn(crate::ffi::x86::blake3_hash_many_sse2);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
#[test]
|
|
330
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
331
|
+
fn test_hash_many_sse41() {
|
|
332
|
+
if !crate::sse41_detected() {
|
|
333
|
+
return;
|
|
334
|
+
}
|
|
335
|
+
test_hash_many_fn(crate::ffi::x86::blake3_hash_many_sse41);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
#[test]
|
|
339
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
340
|
+
fn test_hash_many_avx2() {
|
|
341
|
+
if !crate::avx2_detected() {
|
|
342
|
+
return;
|
|
343
|
+
}
|
|
344
|
+
test_hash_many_fn(crate::ffi::x86::blake3_hash_many_avx2);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
#[test]
|
|
348
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
349
|
+
fn test_hash_many_avx512() {
|
|
350
|
+
if !crate::avx512_detected() {
|
|
351
|
+
return;
|
|
352
|
+
}
|
|
353
|
+
test_hash_many_fn(crate::ffi::x86::blake3_hash_many_avx512);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
#[test]
|
|
357
|
+
#[cfg(feature = "neon")]
|
|
358
|
+
fn test_hash_many_neon() {
|
|
359
|
+
test_hash_many_fn(crate::ffi::neon::blake3_hash_many_neon);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
#[allow(unused)]
|
|
363
|
+
type XofManyFunction = unsafe extern "C" fn(
|
|
364
|
+
cv: *const u32,
|
|
365
|
+
block: *const u8,
|
|
366
|
+
block_len: u8,
|
|
367
|
+
counter: u64,
|
|
368
|
+
flags: u8,
|
|
369
|
+
out: *mut u8,
|
|
370
|
+
outblocks: usize,
|
|
371
|
+
);
|
|
372
|
+
|
|
373
|
+
// A shared helper function for platform-specific tests.
|
|
374
|
+
#[allow(unused)]
|
|
375
|
+
pub fn test_xof_many_fn(xof_many_function: XofManyFunction) {
|
|
376
|
+
let mut block = [0; BLOCK_LEN];
|
|
377
|
+
let block_len = 42;
|
|
378
|
+
crate::test::paint_test_input(&mut block[..block_len]);
|
|
379
|
+
let cv = [40, 41, 42, 43, 44, 45, 46, 47];
|
|
380
|
+
let flags = KEYED_HASH;
|
|
381
|
+
|
|
382
|
+
// Test a few different initial counter values.
|
|
383
|
+
// - 0: The base case.
|
|
384
|
+
// - u32::MAX: The low word of the counter overflows for all inputs except the first.
|
|
385
|
+
// - i32::MAX: *No* overflow. But carry bugs in tricky SIMD code can screw this up, if you XOR
|
|
386
|
+
// when you're supposed to ANDNOT...
|
|
387
|
+
let initial_counters = [0, u32::MAX as u64, i32::MAX as u64];
|
|
388
|
+
for counter in initial_counters {
|
|
389
|
+
dbg!(counter);
|
|
390
|
+
|
|
391
|
+
// 31 (16 + 8 + 4 + 2 + 1) outputs
|
|
392
|
+
const OUTPUT_SIZE: usize = 31 * BLOCK_LEN;
|
|
393
|
+
|
|
394
|
+
let mut portable_out = [0u8; OUTPUT_SIZE];
|
|
395
|
+
for (i, out_block) in portable_out.chunks_exact_mut(BLOCK_LEN).enumerate() {
|
|
396
|
+
unsafe {
|
|
397
|
+
crate::ffi::blake3_compress_xof_portable(
|
|
398
|
+
cv.as_ptr(),
|
|
399
|
+
block.as_ptr(),
|
|
400
|
+
block_len as u8,
|
|
401
|
+
counter + i as u64,
|
|
402
|
+
flags,
|
|
403
|
+
out_block.as_mut_ptr(),
|
|
404
|
+
);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
let mut test_out = [0u8; OUTPUT_SIZE];
|
|
409
|
+
unsafe {
|
|
410
|
+
xof_many_function(
|
|
411
|
+
cv.as_ptr(),
|
|
412
|
+
block.as_ptr(),
|
|
413
|
+
block_len as u8,
|
|
414
|
+
counter,
|
|
415
|
+
flags,
|
|
416
|
+
test_out.as_mut_ptr(),
|
|
417
|
+
OUTPUT_SIZE / BLOCK_LEN,
|
|
418
|
+
);
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
assert_eq!(portable_out, test_out);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// Test that xof_many doesn't write more blocks than requested. Note that the current assembly
|
|
425
|
+
// implementation always outputs at least one block, so we don't test the zero case.
|
|
426
|
+
for block_count in 1..=32 {
|
|
427
|
+
let mut array = [0; BLOCK_LEN * 33];
|
|
428
|
+
let output_start = 17;
|
|
429
|
+
let output_len = block_count * BLOCK_LEN;
|
|
430
|
+
let output_end = output_start + output_len;
|
|
431
|
+
let output = &mut array[output_start..output_end];
|
|
432
|
+
unsafe {
|
|
433
|
+
xof_many_function(
|
|
434
|
+
cv.as_ptr(),
|
|
435
|
+
block.as_ptr(),
|
|
436
|
+
block_len as u8,
|
|
437
|
+
0,
|
|
438
|
+
flags,
|
|
439
|
+
output.as_mut_ptr(),
|
|
440
|
+
block_count,
|
|
441
|
+
);
|
|
442
|
+
}
|
|
443
|
+
for i in 0..array.len() {
|
|
444
|
+
if i < output_start || output_end <= i {
|
|
445
|
+
assert_eq!(0, array[i], "index {i}");
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
#[test]
|
|
452
|
+
#[cfg(unix)]
|
|
453
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
454
|
+
fn test_xof_many_avx512() {
|
|
455
|
+
if !crate::avx512_detected() {
|
|
456
|
+
return;
|
|
457
|
+
}
|
|
458
|
+
test_xof_many_fn(crate::ffi::x86::blake3_xof_many_avx512);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
#[test]
|
|
462
|
+
fn test_compare_reference_impl() {
|
|
463
|
+
const OUT: usize = 303; // more than 64, not a multiple of 4
|
|
464
|
+
let mut input_buf = [0; TEST_CASES_MAX];
|
|
465
|
+
paint_test_input(&mut input_buf);
|
|
466
|
+
for &case in TEST_CASES {
|
|
467
|
+
let input = &input_buf[..case];
|
|
468
|
+
dbg!(case);
|
|
469
|
+
|
|
470
|
+
// regular
|
|
471
|
+
{
|
|
472
|
+
let mut reference_hasher = reference_impl::Hasher::new();
|
|
473
|
+
reference_hasher.update(input);
|
|
474
|
+
let mut expected_out = [0; OUT];
|
|
475
|
+
reference_hasher.finalize(&mut expected_out);
|
|
476
|
+
|
|
477
|
+
let mut test_hasher = crate::Hasher::new();
|
|
478
|
+
test_hasher.update(input);
|
|
479
|
+
let mut test_out = [0; OUT];
|
|
480
|
+
test_hasher.finalize(&mut test_out);
|
|
481
|
+
assert_eq!(test_out[..], expected_out[..]);
|
|
482
|
+
|
|
483
|
+
#[cfg(feature = "tbb")]
|
|
484
|
+
{
|
|
485
|
+
let mut tbb_hasher = crate::Hasher::new();
|
|
486
|
+
tbb_hasher.update_tbb(input);
|
|
487
|
+
let mut tbb_out = [0; OUT];
|
|
488
|
+
tbb_hasher.finalize(&mut tbb_out);
|
|
489
|
+
assert_eq!(tbb_out[..], expected_out[..]);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
// keyed
|
|
494
|
+
{
|
|
495
|
+
let mut reference_hasher = reference_impl::Hasher::new_keyed(&TEST_KEY);
|
|
496
|
+
reference_hasher.update(input);
|
|
497
|
+
let mut expected_out = [0; OUT];
|
|
498
|
+
reference_hasher.finalize(&mut expected_out);
|
|
499
|
+
|
|
500
|
+
let mut test_hasher = crate::Hasher::new_keyed(&TEST_KEY);
|
|
501
|
+
test_hasher.update(input);
|
|
502
|
+
let mut test_out = [0; OUT];
|
|
503
|
+
test_hasher.finalize(&mut test_out);
|
|
504
|
+
assert_eq!(test_out[..], expected_out[..]);
|
|
505
|
+
|
|
506
|
+
#[cfg(feature = "tbb")]
|
|
507
|
+
{
|
|
508
|
+
let mut tbb_hasher = crate::Hasher::new_keyed(&TEST_KEY);
|
|
509
|
+
tbb_hasher.update_tbb(input);
|
|
510
|
+
let mut tbb_out = [0; OUT];
|
|
511
|
+
tbb_hasher.finalize(&mut tbb_out);
|
|
512
|
+
assert_eq!(tbb_out[..], expected_out[..]);
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
// derive_key
|
|
517
|
+
{
|
|
518
|
+
let context = "BLAKE3 2019-12-27 16:13:59 example context (not the test vector one)";
|
|
519
|
+
let mut reference_hasher = reference_impl::Hasher::new_derive_key(context);
|
|
520
|
+
reference_hasher.update(input);
|
|
521
|
+
let mut expected_out = [0; OUT];
|
|
522
|
+
reference_hasher.finalize(&mut expected_out);
|
|
523
|
+
|
|
524
|
+
// the regular C string API
|
|
525
|
+
let mut test_hasher = crate::Hasher::new_derive_key(context);
|
|
526
|
+
test_hasher.update(input);
|
|
527
|
+
let mut test_out = [0; OUT];
|
|
528
|
+
test_hasher.finalize(&mut test_out);
|
|
529
|
+
assert_eq!(test_out[..], expected_out[..]);
|
|
530
|
+
|
|
531
|
+
// the raw bytes API
|
|
532
|
+
let mut test_hasher_raw = crate::Hasher::new_derive_key_raw(context.as_bytes());
|
|
533
|
+
test_hasher_raw.update(input);
|
|
534
|
+
let mut test_out_raw = [0; OUT];
|
|
535
|
+
test_hasher_raw.finalize(&mut test_out_raw);
|
|
536
|
+
assert_eq!(test_out_raw[..], expected_out[..]);
|
|
537
|
+
|
|
538
|
+
#[cfg(feature = "tbb")]
|
|
539
|
+
{
|
|
540
|
+
let mut tbb_hasher = crate::Hasher::new_derive_key(context);
|
|
541
|
+
tbb_hasher.update_tbb(input);
|
|
542
|
+
let mut tbb_out = [0; OUT];
|
|
543
|
+
tbb_hasher.finalize(&mut tbb_out);
|
|
544
|
+
assert_eq!(tbb_out[..], expected_out[..]);
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
fn reference_hash(input: &[u8]) -> [u8; OUT_LEN] {
|
|
551
|
+
let mut hasher = reference_impl::Hasher::new();
|
|
552
|
+
hasher.update(input);
|
|
553
|
+
let mut bytes = [0; OUT_LEN];
|
|
554
|
+
hasher.finalize(&mut bytes);
|
|
555
|
+
bytes.into()
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
#[test]
|
|
559
|
+
fn test_compare_update_multiple() {
|
|
560
|
+
// Don't use all the long test cases here, since that's unnecessarily slow
|
|
561
|
+
// in debug mode.
|
|
562
|
+
let mut short_test_cases = TEST_CASES;
|
|
563
|
+
while *short_test_cases.last().unwrap() > 4 * CHUNK_LEN {
|
|
564
|
+
short_test_cases = &short_test_cases[..short_test_cases.len() - 1];
|
|
565
|
+
}
|
|
566
|
+
assert_eq!(*short_test_cases.last().unwrap(), 4 * CHUNK_LEN);
|
|
567
|
+
|
|
568
|
+
let mut input_buf = [0; 2 * TEST_CASES_MAX];
|
|
569
|
+
paint_test_input(&mut input_buf);
|
|
570
|
+
|
|
571
|
+
for &first_update in short_test_cases {
|
|
572
|
+
dbg!(first_update);
|
|
573
|
+
let first_input = &input_buf[..first_update];
|
|
574
|
+
let mut test_hasher = crate::Hasher::new();
|
|
575
|
+
test_hasher.update(first_input);
|
|
576
|
+
|
|
577
|
+
for &second_update in short_test_cases {
|
|
578
|
+
dbg!(second_update);
|
|
579
|
+
let second_input = &input_buf[first_update..][..second_update];
|
|
580
|
+
let total_input = &input_buf[..first_update + second_update];
|
|
581
|
+
|
|
582
|
+
// Clone the hasher with first_update bytes already written, so
|
|
583
|
+
// that the next iteration can reuse it.
|
|
584
|
+
let mut test_hasher = test_hasher.clone();
|
|
585
|
+
test_hasher.update(second_input);
|
|
586
|
+
let mut test_out = [0; OUT_LEN];
|
|
587
|
+
test_hasher.finalize(&mut test_out);
|
|
588
|
+
|
|
589
|
+
let expected = reference_hash(total_input);
|
|
590
|
+
assert_eq!(expected, test_out);
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
#[test]
|
|
596
|
+
fn test_fuzz_hasher() {
|
|
597
|
+
const INPUT_MAX: usize = 4 * CHUNK_LEN;
|
|
598
|
+
let mut input_buf = [0; 3 * INPUT_MAX];
|
|
599
|
+
paint_test_input(&mut input_buf);
|
|
600
|
+
|
|
601
|
+
// Don't do too many iterations in debug mode, to keep the tests under a
|
|
602
|
+
// second or so. CI should run tests in release mode also. Provide an
|
|
603
|
+
// environment variable for specifying a larger number of fuzz iterations.
|
|
604
|
+
let num_tests = if cfg!(debug_assertions) { 100 } else { 10_000 };
|
|
605
|
+
|
|
606
|
+
// Use a fixed RNG seed for reproducibility.
|
|
607
|
+
let mut rng = rand_chacha::ChaCha8Rng::from_seed([1; 32]);
|
|
608
|
+
for _num_test in 0..num_tests {
|
|
609
|
+
dbg!(_num_test);
|
|
610
|
+
let mut hasher = crate::Hasher::new();
|
|
611
|
+
let mut total_input = 0;
|
|
612
|
+
// For each test, write 3 inputs of random length.
|
|
613
|
+
for _ in 0..3 {
|
|
614
|
+
let input_len = rng.random_range(0..INPUT_MAX + 1);
|
|
615
|
+
dbg!(input_len);
|
|
616
|
+
let input = &input_buf[total_input..][..input_len];
|
|
617
|
+
hasher.update(input);
|
|
618
|
+
total_input += input_len;
|
|
619
|
+
}
|
|
620
|
+
let expected = reference_hash(&input_buf[..total_input]);
|
|
621
|
+
let mut test_out = [0; 32];
|
|
622
|
+
hasher.finalize(&mut test_out);
|
|
623
|
+
assert_eq!(expected, test_out);
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
#[test]
|
|
628
|
+
fn test_finalize_seek() {
|
|
629
|
+
let mut expected = [0; 1000];
|
|
630
|
+
{
|
|
631
|
+
let mut reference_hasher = reference_impl::Hasher::new();
|
|
632
|
+
reference_hasher.update(b"foobarbaz");
|
|
633
|
+
reference_hasher.finalize(&mut expected);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
let mut test_hasher = crate::Hasher::new();
|
|
637
|
+
test_hasher.update(b"foobarbaz");
|
|
638
|
+
|
|
639
|
+
let mut out = [0; 103];
|
|
640
|
+
for &seek in &[0, 1, 7, 59, 63, 64, 65, 501, expected.len() - out.len()] {
|
|
641
|
+
dbg!(seek);
|
|
642
|
+
test_hasher.finalize_seek(seek as u64, &mut out);
|
|
643
|
+
assert_eq!(&expected[seek..][..out.len()], &out[..]);
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
#[test]
|
|
648
|
+
fn test_reset() {
|
|
649
|
+
{
|
|
650
|
+
let mut hasher = crate::Hasher::new();
|
|
651
|
+
hasher.update(&[42; 3 * CHUNK_LEN + 7]);
|
|
652
|
+
hasher.reset();
|
|
653
|
+
hasher.update(&[42; CHUNK_LEN + 3]);
|
|
654
|
+
let mut output = [0; 32];
|
|
655
|
+
hasher.finalize(&mut output);
|
|
656
|
+
|
|
657
|
+
let mut reference_hasher = reference_impl::Hasher::new();
|
|
658
|
+
reference_hasher.update(&[42; CHUNK_LEN + 3]);
|
|
659
|
+
let mut reference_hash = [0; 32];
|
|
660
|
+
reference_hasher.finalize(&mut reference_hash);
|
|
661
|
+
|
|
662
|
+
assert_eq!(reference_hash, output);
|
|
663
|
+
}
|
|
664
|
+
{
|
|
665
|
+
let key = &[99; 32];
|
|
666
|
+
let mut hasher = crate::Hasher::new_keyed(key);
|
|
667
|
+
hasher.update(&[42; 3 * CHUNK_LEN + 7]);
|
|
668
|
+
hasher.reset();
|
|
669
|
+
hasher.update(&[42; CHUNK_LEN + 3]);
|
|
670
|
+
let mut output = [0; 32];
|
|
671
|
+
hasher.finalize(&mut output);
|
|
672
|
+
|
|
673
|
+
let mut reference_hasher = reference_impl::Hasher::new_keyed(key);
|
|
674
|
+
reference_hasher.update(&[42; CHUNK_LEN + 3]);
|
|
675
|
+
let mut reference_hash = [0; 32];
|
|
676
|
+
reference_hasher.finalize(&mut reference_hash);
|
|
677
|
+
|
|
678
|
+
assert_eq!(reference_hash, output);
|
|
679
|
+
}
|
|
680
|
+
{
|
|
681
|
+
let context = "BLAKE3 2020-02-12 10:20:58 reset test";
|
|
682
|
+
let mut hasher = crate::Hasher::new_derive_key(context);
|
|
683
|
+
hasher.update(&[42; 3 * CHUNK_LEN + 7]);
|
|
684
|
+
hasher.reset();
|
|
685
|
+
hasher.update(&[42; CHUNK_LEN + 3]);
|
|
686
|
+
let mut output = [0; 32];
|
|
687
|
+
hasher.finalize(&mut output);
|
|
688
|
+
|
|
689
|
+
let mut reference_hasher = reference_impl::Hasher::new_derive_key(context);
|
|
690
|
+
reference_hasher.update(&[42; CHUNK_LEN + 3]);
|
|
691
|
+
let mut reference_hash = [0; 32];
|
|
692
|
+
reference_hasher.finalize(&mut reference_hash);
|
|
693
|
+
|
|
694
|
+
assert_eq!(reference_hash, output);
|
|
695
|
+
}
|
|
696
|
+
}
|