react-native-quick-crypto 1.0.0-beta.2 → 1.0.0-beta.21
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 +143 -7
- package/README.md +12 -6
- package/android/CMakeLists.txt +82 -21
- package/android/build.gradle +47 -4
- package/android/src/main/cpp/cpp-adapter.cpp +3 -10
- package/android/src/main/java/com/margelo/nitro/quickcrypto/QuickCryptoPackage.java +13 -10
- 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/HybridCipher.cpp +322 -0
- package/cpp/cipher/HybridCipher.hpp +68 -0
- package/cpp/cipher/HybridCipherFactory.hpp +97 -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 +300 -0
- package/cpp/ed25519/HybridEdKeyPair.hpp +63 -0
- 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 +243 -0
- package/cpp/keys/HybridKeyObjectHandle.hpp +42 -0
- package/cpp/keys/KeyObjectData.cpp +226 -0
- package/cpp/keys/KeyObjectData.hpp +71 -0
- package/cpp/keys/node.h +5 -0
- package/cpp/pbkdf2/HybridPbkdf2.cpp +51 -0
- package/cpp/pbkdf2/HybridPbkdf2.hpp +24 -0
- package/cpp/random/HybridRandom.cpp +32 -18
- package/cpp/random/HybridRandom.hpp +18 -30
- package/cpp/rsa/HybridRsaKeyPair.cpp +154 -0
- package/cpp/rsa/HybridRsaKeyPair.hpp +43 -0
- package/cpp/utils/Macros.hpp +68 -0
- package/cpp/utils/Utils.hpp +53 -1
- 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 +356 -0
- package/deps/fastpbkdf2/fastpbkdf2.h +68 -0
- package/deps/ncrypto/ncrypto.cc +4679 -0
- package/deps/ncrypto/ncrypto.h +1625 -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/ec.js +344 -0
- package/lib/commonjs/ec.js.map +1 -0
- package/lib/commonjs/ed.js +185 -0
- package/lib/commonjs/ed.js.map +1 -0
- 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 +152 -32
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/keys/classes.js +250 -0
- package/lib/commonjs/keys/classes.js.map +1 -0
- package/lib/commonjs/keys/generateKeyPair.js +102 -0
- package/lib/commonjs/keys/generateKeyPair.js.map +1 -0
- package/lib/commonjs/keys/index.js +89 -0
- package/lib/commonjs/keys/index.js.map +1 -0
- package/lib/commonjs/keys/signVerify.js +41 -0
- package/lib/commonjs/keys/signVerify.js.map +1 -0
- package/lib/commonjs/keys/utils.js +123 -0
- package/lib/commonjs/keys/utils.js.map +1 -0
- package/lib/commonjs/pbkdf2.js +89 -0
- package/lib/commonjs/pbkdf2.js.map +1 -0
- package/lib/commonjs/random.js +9 -3
- package/lib/commonjs/random.js.map +1 -1
- package/lib/commonjs/rsa.js +129 -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/edKeyPair.nitro.js +6 -0
- package/lib/commonjs/specs/edKeyPair.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/keyObjectHandle.nitro.js +6 -0
- package/lib/commonjs/specs/keyObjectHandle.nitro.js.map +1 -0
- package/lib/commonjs/specs/pbkdf2.nitro.js +6 -0
- package/lib/commonjs/specs/pbkdf2.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/subtle.js +365 -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 +140 -6
- package/lib/commonjs/utils/conversion.js.map +1 -1
- package/lib/commonjs/utils/errors.js +14 -0
- package/lib/commonjs/utils/errors.js.map +1 -0
- package/lib/commonjs/utils/hashnames.js +91 -0
- package/lib/commonjs/utils/hashnames.js.map +1 -0
- package/lib/commonjs/utils/index.js +65 -5
- 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 +52 -0
- package/lib/commonjs/utils/types.js.map +1 -1
- package/lib/commonjs/utils/validation.js +98 -0
- package/lib/commonjs/utils/validation.js.map +1 -0
- 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/ec.js +336 -0
- package/lib/module/ec.js.map +1 -0
- package/lib/module/ed.js +178 -0
- package/lib/module/ed.js.map +1 -0
- 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 +33 -29
- package/lib/module/index.js.map +1 -1
- package/lib/module/keys/classes.js +241 -0
- package/lib/module/keys/classes.js.map +1 -0
- package/lib/module/keys/generateKeyPair.js +96 -0
- package/lib/module/keys/generateKeyPair.js.map +1 -0
- package/lib/module/keys/index.js +32 -0
- package/lib/module/keys/index.js.map +1 -0
- package/lib/module/keys/signVerify.js +41 -0
- package/lib/module/keys/signVerify.js.map +1 -0
- package/lib/module/keys/utils.js +114 -0
- package/lib/module/keys/utils.js.map +1 -0
- package/lib/module/pbkdf2.js +83 -0
- package/lib/module/pbkdf2.js.map +1 -0
- package/lib/module/random.js +7 -1
- package/lib/module/random.js.map +1 -1
- package/lib/module/rsa.js +123 -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/edKeyPair.nitro.js +4 -0
- package/lib/module/specs/edKeyPair.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/keyObjectHandle.nitro.js +4 -0
- package/lib/module/specs/keyObjectHandle.nitro.js.map +1 -0
- package/lib/module/specs/pbkdf2.nitro.js +4 -0
- package/lib/module/specs/pbkdf2.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/subtle.js +360 -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 +120 -8
- package/lib/module/utils/conversion.js.map +1 -1
- package/lib/module/utils/errors.js +10 -0
- package/lib/module/utils/errors.js.map +1 -0
- package/lib/module/utils/hashnames.js +89 -0
- package/lib/module/utils/hashnames.js.map +1 -0
- package/lib/module/utils/index.js +6 -5
- 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 +53 -0
- package/lib/module/utils/types.js.map +1 -1
- package/lib/module/utils/validation.js +87 -0
- package/lib/module/utils/validation.js.map +1 -0
- 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/ec.d.ts +13 -0
- package/lib/typescript/ec.d.ts.map +1 -0
- package/lib/typescript/ed.d.ts +43 -0
- package/lib/typescript/ed.d.ts.map +1 -0
- 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 +110 -9
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/keys/classes.d.ts +79 -0
- package/lib/typescript/keys/classes.d.ts.map +1 -0
- package/lib/typescript/keys/generateKeyPair.d.ts +6 -0
- package/lib/typescript/keys/generateKeyPair.d.ts.map +1 -0
- package/lib/typescript/keys/index.d.ts +7 -0
- package/lib/typescript/keys/index.d.ts.map +1 -0
- package/lib/typescript/keys/signVerify.d.ts +1 -0
- package/lib/typescript/keys/signVerify.d.ts.map +1 -0
- package/lib/typescript/keys/utils.d.ts +34 -0
- package/lib/typescript/keys/utils.d.ts.map +1 -0
- package/lib/typescript/pbkdf2.d.ts +12 -0
- package/lib/typescript/pbkdf2.d.ts.map +1 -0
- package/lib/typescript/random.d.ts +11 -5
- package/lib/typescript/random.d.ts.map +1 -1
- package/lib/typescript/rsa.d.ts +10 -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 +17 -0
- package/lib/typescript/specs/edKeyPair.nitro.d.ts.map +1 -0
- 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 +14 -0
- package/lib/typescript/specs/keyObjectHandle.nitro.d.ts.map +1 -0
- package/lib/typescript/specs/pbkdf2.nitro.d.ts +9 -0
- package/lib/typescript/specs/pbkdf2.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/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 +24 -2
- package/lib/typescript/utils/conversion.d.ts.map +1 -1
- package/lib/typescript/utils/errors.d.ts +7 -0
- package/lib/typescript/utils/errors.d.ts.map +1 -0
- package/lib/typescript/utils/hashnames.d.ts +13 -0
- package/lib/typescript/utils/hashnames.d.ts.map +1 -0
- package/lib/typescript/utils/index.d.ts +6 -5
- 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 +252 -2
- package/lib/typescript/utils/types.d.ts.map +1 -1
- package/lib/typescript/utils/validation.d.ts +13 -0
- package/lib/typescript/utils/validation.d.ts.map +1 -0
- package/nitrogen/generated/.gitattributes +1 -0
- package/nitrogen/generated/android/QuickCrypto+autolinking.cmake +47 -4
- package/nitrogen/generated/android/QuickCrypto+autolinking.gradle +4 -3
- package/nitrogen/generated/android/QuickCryptoOnLoad.cpp +144 -0
- package/nitrogen/generated/android/QuickCryptoOnLoad.hpp +25 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/crypto/QuickCryptoOnLoad.kt +35 -0
- package/nitrogen/generated/ios/QuickCrypto+autolinking.rb +11 -8
- package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.cpp +11 -3
- package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.hpp +5 -3
- package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Umbrella.hpp +16 -7
- package/nitrogen/generated/ios/QuickCryptoAutolinking.mm +135 -0
- package/nitrogen/generated/ios/QuickCryptoAutolinking.swift +12 -0
- package/nitrogen/generated/shared/c++/CFRGKeyPairType.hpp +84 -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 +30 -0
- package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.hpp +75 -0
- 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 +26 -0
- package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.hpp +92 -0
- package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.cpp +22 -0
- package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.hpp +66 -0
- package/nitrogen/generated/shared/c++/HybridRandomSpec.cpp +2 -3
- package/nitrogen/generated/shared/c++/HybridRandomSpec.hpp +9 -6
- package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.cpp +29 -0
- package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.hpp +77 -0
- package/nitrogen/generated/shared/c++/JWK.hpp +161 -0
- package/nitrogen/generated/shared/c++/JWKkty.hpp +84 -0
- package/nitrogen/generated/shared/c++/JWKuse.hpp +76 -0
- package/nitrogen/generated/shared/c++/KFormatType.hpp +63 -0
- package/nitrogen/generated/shared/c++/KeyDetail.hpp +92 -0
- package/nitrogen/generated/shared/c++/KeyEncoding.hpp +64 -0
- package/nitrogen/generated/shared/c++/KeyObject.hpp +67 -0
- package/nitrogen/generated/shared/c++/KeyType.hpp +63 -0
- package/nitrogen/generated/shared/c++/KeyUsage.hpp +116 -0
- package/nitrogen/generated/shared/c++/NamedCurve.hpp +80 -0
- package/package.json +66 -39
- package/src/blake3.ts +123 -0
- package/src/cipher.ts +335 -0
- package/src/ec.ts +432 -0
- package/src/ed.ts +256 -0
- 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 +32 -29
- package/src/keys/classes.ts +317 -0
- package/src/keys/generateKeyPair.ts +145 -0
- package/src/keys/index.ts +52 -0
- package/src/keys/signVerify.ts +39 -0
- package/src/keys/utils.ts +190 -0
- package/src/pbkdf2.ts +154 -0
- package/src/random.ts +26 -23
- package/src/rsa.ts +176 -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 +43 -0
- package/src/specs/hash.nitro.ts +10 -0
- package/src/specs/hmac.nitro.ts +7 -0
- package/src/specs/keyObjectHandle.nitro.ts +31 -0
- package/src/specs/pbkdf2.nitro.ts +18 -0
- package/src/specs/random.nitro.ts +2 -2
- package/src/specs/rsaKeyPair.nitro.ts +33 -0
- package/src/subtle.ts +614 -0
- package/src/utils/cipher.ts +60 -0
- package/src/utils/conversion.ts +143 -9
- package/src/utils/errors.ts +15 -0
- package/src/utils/hashnames.ts +98 -0
- package/src/utils/index.ts +6 -6
- package/src/utils/noble.ts +85 -0
- package/src/utils/types.ts +423 -3
- package/src/utils/validation.ts +130 -0
- package/ios/QuickCryptoOnLoad.mm +0 -19
- package/lib/module/package.json +0 -1
|
@@ -0,0 +1,623 @@
|
|
|
1
|
+
#![feature(test)]
|
|
2
|
+
|
|
3
|
+
extern crate test;
|
|
4
|
+
|
|
5
|
+
use arrayref::array_ref;
|
|
6
|
+
use arrayvec::ArrayVec;
|
|
7
|
+
use blake3::platform::{Platform, MAX_SIMD_DEGREE};
|
|
8
|
+
use blake3::OUT_LEN;
|
|
9
|
+
use blake3::{BLOCK_LEN, CHUNK_LEN};
|
|
10
|
+
use rand::prelude::*;
|
|
11
|
+
use test::Bencher;
|
|
12
|
+
|
|
13
|
+
const KIB: usize = 1024;
|
|
14
|
+
|
|
15
|
+
// This struct randomizes two things:
|
|
16
|
+
// 1. The actual bytes of input.
|
|
17
|
+
// 2. The page offset the input starts at.
|
|
18
|
+
pub struct RandomInput {
|
|
19
|
+
buf: Vec<u8>,
|
|
20
|
+
len: usize,
|
|
21
|
+
offsets: Vec<usize>,
|
|
22
|
+
offset_index: usize,
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
impl RandomInput {
|
|
26
|
+
pub fn new(b: &mut Bencher, len: usize) -> Self {
|
|
27
|
+
b.bytes += len as u64;
|
|
28
|
+
let page_size: usize = page_size::get();
|
|
29
|
+
let mut buf = vec![0u8; len + page_size];
|
|
30
|
+
let mut rng = rand::rng();
|
|
31
|
+
rng.fill_bytes(&mut buf);
|
|
32
|
+
let mut offsets: Vec<usize> = (0..page_size).collect();
|
|
33
|
+
offsets.shuffle(&mut rng);
|
|
34
|
+
Self {
|
|
35
|
+
buf,
|
|
36
|
+
len,
|
|
37
|
+
offsets,
|
|
38
|
+
offset_index: 0,
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
pub fn get(&mut self) -> &[u8] {
|
|
43
|
+
let offset = self.offsets[self.offset_index];
|
|
44
|
+
self.offset_index += 1;
|
|
45
|
+
if self.offset_index >= self.offsets.len() {
|
|
46
|
+
self.offset_index = 0;
|
|
47
|
+
}
|
|
48
|
+
&self.buf[offset..][..self.len]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
fn bench_single_compression_fn(b: &mut Bencher, platform: Platform) {
|
|
53
|
+
let mut state = [1u32; 8];
|
|
54
|
+
let mut r = RandomInput::new(b, 64);
|
|
55
|
+
let input = array_ref!(r.get(), 0, 64);
|
|
56
|
+
b.iter(|| platform.compress_in_place(&mut state, input, 64 as u8, 0, 0));
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#[bench]
|
|
60
|
+
fn bench_single_compression_portable(b: &mut Bencher) {
|
|
61
|
+
bench_single_compression_fn(b, Platform::portable());
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
#[bench]
|
|
65
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
66
|
+
fn bench_single_compression_sse2(b: &mut Bencher) {
|
|
67
|
+
if let Some(platform) = Platform::sse2() {
|
|
68
|
+
bench_single_compression_fn(b, platform);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
#[bench]
|
|
73
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
74
|
+
fn bench_single_compression_sse41(b: &mut Bencher) {
|
|
75
|
+
if let Some(platform) = Platform::sse41() {
|
|
76
|
+
bench_single_compression_fn(b, platform);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
#[bench]
|
|
81
|
+
#[cfg(blake3_avx512_ffi)]
|
|
82
|
+
fn bench_single_compression_avx512(b: &mut Bencher) {
|
|
83
|
+
if let Some(platform) = Platform::avx512() {
|
|
84
|
+
bench_single_compression_fn(b, platform);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
fn bench_many_chunks_fn(b: &mut Bencher, platform: Platform) {
|
|
89
|
+
let degree = platform.simd_degree();
|
|
90
|
+
let mut inputs = Vec::new();
|
|
91
|
+
for _ in 0..degree {
|
|
92
|
+
inputs.push(RandomInput::new(b, CHUNK_LEN));
|
|
93
|
+
}
|
|
94
|
+
b.iter(|| {
|
|
95
|
+
let input_arrays: ArrayVec<&[u8; CHUNK_LEN], MAX_SIMD_DEGREE> = inputs
|
|
96
|
+
.iter_mut()
|
|
97
|
+
.take(degree)
|
|
98
|
+
.map(|i| array_ref!(i.get(), 0, CHUNK_LEN))
|
|
99
|
+
.collect();
|
|
100
|
+
let mut out = [0; MAX_SIMD_DEGREE * OUT_LEN];
|
|
101
|
+
platform.hash_many(
|
|
102
|
+
&input_arrays[..],
|
|
103
|
+
&[0; 8],
|
|
104
|
+
0,
|
|
105
|
+
blake3::IncrementCounter::Yes,
|
|
106
|
+
0,
|
|
107
|
+
0,
|
|
108
|
+
0,
|
|
109
|
+
&mut out,
|
|
110
|
+
);
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
#[bench]
|
|
115
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
116
|
+
fn bench_many_chunks_sse2(b: &mut Bencher) {
|
|
117
|
+
if let Some(platform) = Platform::sse2() {
|
|
118
|
+
bench_many_chunks_fn(b, platform);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
#[bench]
|
|
123
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
124
|
+
fn bench_many_chunks_sse41(b: &mut Bencher) {
|
|
125
|
+
if let Some(platform) = Platform::sse41() {
|
|
126
|
+
bench_many_chunks_fn(b, platform);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
#[bench]
|
|
131
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
132
|
+
fn bench_many_chunks_avx2(b: &mut Bencher) {
|
|
133
|
+
if let Some(platform) = Platform::avx2() {
|
|
134
|
+
bench_many_chunks_fn(b, platform);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
#[bench]
|
|
139
|
+
#[cfg(blake3_avx512_ffi)]
|
|
140
|
+
fn bench_many_chunks_avx512(b: &mut Bencher) {
|
|
141
|
+
if let Some(platform) = Platform::avx512() {
|
|
142
|
+
bench_many_chunks_fn(b, platform);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
#[bench]
|
|
147
|
+
#[cfg(blake3_neon)]
|
|
148
|
+
fn bench_many_chunks_neon(b: &mut Bencher) {
|
|
149
|
+
bench_many_chunks_fn(b, Platform::neon().unwrap());
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
#[bench]
|
|
153
|
+
#[cfg(blake3_wasm32_simd)]
|
|
154
|
+
fn bench_many_chunks_wasm(b: &mut Bencher) {
|
|
155
|
+
bench_many_chunks_fn(b, Platform::wasm32_simd().unwrap());
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// TODO: When we get const generics we can unify this with the chunks code.
|
|
159
|
+
fn bench_many_parents_fn(b: &mut Bencher, platform: Platform) {
|
|
160
|
+
let degree = platform.simd_degree();
|
|
161
|
+
let mut inputs = Vec::new();
|
|
162
|
+
for _ in 0..degree {
|
|
163
|
+
inputs.push(RandomInput::new(b, BLOCK_LEN));
|
|
164
|
+
}
|
|
165
|
+
b.iter(|| {
|
|
166
|
+
let input_arrays: ArrayVec<&[u8; BLOCK_LEN], MAX_SIMD_DEGREE> = inputs
|
|
167
|
+
.iter_mut()
|
|
168
|
+
.take(degree)
|
|
169
|
+
.map(|i| array_ref!(i.get(), 0, BLOCK_LEN))
|
|
170
|
+
.collect();
|
|
171
|
+
let mut out = [0; MAX_SIMD_DEGREE * OUT_LEN];
|
|
172
|
+
platform.hash_many(
|
|
173
|
+
&input_arrays[..],
|
|
174
|
+
&[0; 8],
|
|
175
|
+
0,
|
|
176
|
+
blake3::IncrementCounter::No,
|
|
177
|
+
0,
|
|
178
|
+
0,
|
|
179
|
+
0,
|
|
180
|
+
&mut out,
|
|
181
|
+
);
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
#[bench]
|
|
186
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
187
|
+
fn bench_many_parents_sse2(b: &mut Bencher) {
|
|
188
|
+
if let Some(platform) = Platform::sse2() {
|
|
189
|
+
bench_many_parents_fn(b, platform);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
#[bench]
|
|
194
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
195
|
+
fn bench_many_parents_sse41(b: &mut Bencher) {
|
|
196
|
+
if let Some(platform) = Platform::sse41() {
|
|
197
|
+
bench_many_parents_fn(b, platform);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
#[bench]
|
|
202
|
+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
203
|
+
fn bench_many_parents_avx2(b: &mut Bencher) {
|
|
204
|
+
if let Some(platform) = Platform::avx2() {
|
|
205
|
+
bench_many_parents_fn(b, platform);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
#[bench]
|
|
210
|
+
#[cfg(blake3_avx512_ffi)]
|
|
211
|
+
fn bench_many_parents_avx512(b: &mut Bencher) {
|
|
212
|
+
if let Some(platform) = Platform::avx512() {
|
|
213
|
+
bench_many_parents_fn(b, platform);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
#[bench]
|
|
218
|
+
#[cfg(blake3_neon)]
|
|
219
|
+
fn bench_many_parents_neon(b: &mut Bencher) {
|
|
220
|
+
bench_many_parents_fn(b, Platform::neon().unwrap());
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
#[bench]
|
|
224
|
+
#[cfg(blake3_wasm32_simd)]
|
|
225
|
+
fn bench_many_parents_wasm(b: &mut Bencher) {
|
|
226
|
+
bench_many_parents_fn(b, Platform::wasm32_simd().unwrap());
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
fn bench_atonce(b: &mut Bencher, len: usize) {
|
|
230
|
+
let mut input = RandomInput::new(b, len);
|
|
231
|
+
b.iter(|| blake3::hash(input.get()));
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
#[bench]
|
|
235
|
+
fn bench_atonce_0001_block(b: &mut Bencher) {
|
|
236
|
+
bench_atonce(b, BLOCK_LEN);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
#[bench]
|
|
240
|
+
fn bench_atonce_0001_kib(b: &mut Bencher) {
|
|
241
|
+
bench_atonce(b, 1 * KIB);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
#[bench]
|
|
245
|
+
fn bench_atonce_0002_kib(b: &mut Bencher) {
|
|
246
|
+
bench_atonce(b, 2 * KIB);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
#[bench]
|
|
250
|
+
fn bench_atonce_0004_kib(b: &mut Bencher) {
|
|
251
|
+
bench_atonce(b, 4 * KIB);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
#[bench]
|
|
255
|
+
fn bench_atonce_0008_kib(b: &mut Bencher) {
|
|
256
|
+
bench_atonce(b, 8 * KIB);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
#[bench]
|
|
260
|
+
fn bench_atonce_0016_kib(b: &mut Bencher) {
|
|
261
|
+
bench_atonce(b, 16 * KIB);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
#[bench]
|
|
265
|
+
fn bench_atonce_0032_kib(b: &mut Bencher) {
|
|
266
|
+
bench_atonce(b, 32 * KIB);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
#[bench]
|
|
270
|
+
fn bench_atonce_0064_kib(b: &mut Bencher) {
|
|
271
|
+
bench_atonce(b, 64 * KIB);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
#[bench]
|
|
275
|
+
fn bench_atonce_0128_kib(b: &mut Bencher) {
|
|
276
|
+
bench_atonce(b, 128 * KIB);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
#[bench]
|
|
280
|
+
fn bench_atonce_0256_kib(b: &mut Bencher) {
|
|
281
|
+
bench_atonce(b, 256 * KIB);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
#[bench]
|
|
285
|
+
fn bench_atonce_0512_kib(b: &mut Bencher) {
|
|
286
|
+
bench_atonce(b, 512 * KIB);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
#[bench]
|
|
290
|
+
fn bench_atonce_1024_kib(b: &mut Bencher) {
|
|
291
|
+
bench_atonce(b, 1024 * KIB);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
fn bench_incremental(b: &mut Bencher, len: usize) {
|
|
295
|
+
let mut input = RandomInput::new(b, len);
|
|
296
|
+
b.iter(|| blake3::Hasher::new().update(input.get()).finalize());
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
#[bench]
|
|
300
|
+
fn bench_incremental_0001_block(b: &mut Bencher) {
|
|
301
|
+
bench_incremental(b, BLOCK_LEN);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
#[bench]
|
|
305
|
+
fn bench_incremental_0001_kib(b: &mut Bencher) {
|
|
306
|
+
bench_incremental(b, 1 * KIB);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
#[bench]
|
|
310
|
+
fn bench_incremental_0002_kib(b: &mut Bencher) {
|
|
311
|
+
bench_incremental(b, 2 * KIB);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
#[bench]
|
|
315
|
+
fn bench_incremental_0004_kib(b: &mut Bencher) {
|
|
316
|
+
bench_incremental(b, 4 * KIB);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
#[bench]
|
|
320
|
+
fn bench_incremental_0008_kib(b: &mut Bencher) {
|
|
321
|
+
bench_incremental(b, 8 * KIB);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
#[bench]
|
|
325
|
+
fn bench_incremental_0016_kib(b: &mut Bencher) {
|
|
326
|
+
bench_incremental(b, 16 * KIB);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
#[bench]
|
|
330
|
+
fn bench_incremental_0032_kib(b: &mut Bencher) {
|
|
331
|
+
bench_incremental(b, 32 * KIB);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
#[bench]
|
|
335
|
+
fn bench_incremental_0064_kib(b: &mut Bencher) {
|
|
336
|
+
bench_incremental(b, 64 * KIB);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
#[bench]
|
|
340
|
+
fn bench_incremental_0128_kib(b: &mut Bencher) {
|
|
341
|
+
bench_incremental(b, 128 * KIB);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
#[bench]
|
|
345
|
+
fn bench_incremental_0256_kib(b: &mut Bencher) {
|
|
346
|
+
bench_incremental(b, 256 * KIB);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
#[bench]
|
|
350
|
+
fn bench_incremental_0512_kib(b: &mut Bencher) {
|
|
351
|
+
bench_incremental(b, 512 * KIB);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
#[bench]
|
|
355
|
+
fn bench_incremental_1024_kib(b: &mut Bencher) {
|
|
356
|
+
bench_incremental(b, 1024 * KIB);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
fn bench_reference(b: &mut Bencher, len: usize) {
|
|
360
|
+
let mut input = RandomInput::new(b, len);
|
|
361
|
+
b.iter(|| {
|
|
362
|
+
let mut hasher = reference_impl::Hasher::new();
|
|
363
|
+
hasher.update(input.get());
|
|
364
|
+
let mut out = [0; 32];
|
|
365
|
+
hasher.finalize(&mut out);
|
|
366
|
+
out
|
|
367
|
+
});
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
#[bench]
|
|
371
|
+
fn bench_reference_0001_block(b: &mut Bencher) {
|
|
372
|
+
bench_reference(b, BLOCK_LEN);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
#[bench]
|
|
376
|
+
fn bench_reference_0001_kib(b: &mut Bencher) {
|
|
377
|
+
bench_reference(b, 1 * KIB);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
#[bench]
|
|
381
|
+
fn bench_reference_0002_kib(b: &mut Bencher) {
|
|
382
|
+
bench_reference(b, 2 * KIB);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
#[bench]
|
|
386
|
+
fn bench_reference_0004_kib(b: &mut Bencher) {
|
|
387
|
+
bench_reference(b, 4 * KIB);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
#[bench]
|
|
391
|
+
fn bench_reference_0008_kib(b: &mut Bencher) {
|
|
392
|
+
bench_reference(b, 8 * KIB);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
#[bench]
|
|
396
|
+
fn bench_reference_0016_kib(b: &mut Bencher) {
|
|
397
|
+
bench_reference(b, 16 * KIB);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
#[bench]
|
|
401
|
+
fn bench_reference_0032_kib(b: &mut Bencher) {
|
|
402
|
+
bench_reference(b, 32 * KIB);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
#[bench]
|
|
406
|
+
fn bench_reference_0064_kib(b: &mut Bencher) {
|
|
407
|
+
bench_reference(b, 64 * KIB);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
#[bench]
|
|
411
|
+
fn bench_reference_0128_kib(b: &mut Bencher) {
|
|
412
|
+
bench_reference(b, 128 * KIB);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
#[bench]
|
|
416
|
+
fn bench_reference_0256_kib(b: &mut Bencher) {
|
|
417
|
+
bench_reference(b, 256 * KIB);
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
#[bench]
|
|
421
|
+
fn bench_reference_0512_kib(b: &mut Bencher) {
|
|
422
|
+
bench_reference(b, 512 * KIB);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
#[bench]
|
|
426
|
+
fn bench_reference_1024_kib(b: &mut Bencher) {
|
|
427
|
+
bench_reference(b, 1024 * KIB);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
#[cfg(feature = "rayon")]
|
|
431
|
+
fn bench_rayon(b: &mut Bencher, len: usize) {
|
|
432
|
+
let mut input = RandomInput::new(b, len);
|
|
433
|
+
b.iter(|| blake3::Hasher::new().update_rayon(input.get()).finalize());
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
#[bench]
|
|
437
|
+
#[cfg(feature = "rayon")]
|
|
438
|
+
fn bench_rayon_0001_block(b: &mut Bencher) {
|
|
439
|
+
bench_rayon(b, BLOCK_LEN);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
#[bench]
|
|
443
|
+
#[cfg(feature = "rayon")]
|
|
444
|
+
fn bench_rayon_0001_kib(b: &mut Bencher) {
|
|
445
|
+
bench_rayon(b, 1 * KIB);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
#[bench]
|
|
449
|
+
#[cfg(feature = "rayon")]
|
|
450
|
+
fn bench_rayon_0002_kib(b: &mut Bencher) {
|
|
451
|
+
bench_rayon(b, 2 * KIB);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
#[bench]
|
|
455
|
+
#[cfg(feature = "rayon")]
|
|
456
|
+
fn bench_rayon_0004_kib(b: &mut Bencher) {
|
|
457
|
+
bench_rayon(b, 4 * KIB);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
#[bench]
|
|
461
|
+
#[cfg(feature = "rayon")]
|
|
462
|
+
fn bench_rayon_0008_kib(b: &mut Bencher) {
|
|
463
|
+
bench_rayon(b, 8 * KIB);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
#[bench]
|
|
467
|
+
#[cfg(feature = "rayon")]
|
|
468
|
+
fn bench_rayon_0016_kib(b: &mut Bencher) {
|
|
469
|
+
bench_rayon(b, 16 * KIB);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
#[bench]
|
|
473
|
+
#[cfg(feature = "rayon")]
|
|
474
|
+
fn bench_rayon_0032_kib(b: &mut Bencher) {
|
|
475
|
+
bench_rayon(b, 32 * KIB);
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
#[bench]
|
|
479
|
+
#[cfg(feature = "rayon")]
|
|
480
|
+
fn bench_rayon_0064_kib(b: &mut Bencher) {
|
|
481
|
+
bench_rayon(b, 64 * KIB);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
#[bench]
|
|
485
|
+
#[cfg(feature = "rayon")]
|
|
486
|
+
fn bench_rayon_0128_kib(b: &mut Bencher) {
|
|
487
|
+
bench_rayon(b, 128 * KIB);
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
#[bench]
|
|
491
|
+
#[cfg(feature = "rayon")]
|
|
492
|
+
fn bench_rayon_0256_kib(b: &mut Bencher) {
|
|
493
|
+
bench_rayon(b, 256 * KIB);
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
#[bench]
|
|
497
|
+
#[cfg(feature = "rayon")]
|
|
498
|
+
fn bench_rayon_0512_kib(b: &mut Bencher) {
|
|
499
|
+
bench_rayon(b, 512 * KIB);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
#[bench]
|
|
503
|
+
#[cfg(feature = "rayon")]
|
|
504
|
+
fn bench_rayon_1024_kib(b: &mut Bencher) {
|
|
505
|
+
bench_rayon(b, 1024 * KIB);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
// This checks that update() splits up its input in increasing powers of 2, so
|
|
509
|
+
// that it can recover a high degree of parallelism when the number of bytes
|
|
510
|
+
// hashed so far is uneven. The performance of this benchmark should be
|
|
511
|
+
// reasonably close to bench_incremental_0064_kib, within 80% or so. When we
|
|
512
|
+
// had a bug in this logic (https://github.com/BLAKE3-team/BLAKE3/issues/69),
|
|
513
|
+
// performance was less than half.
|
|
514
|
+
#[bench]
|
|
515
|
+
fn bench_two_updates(b: &mut Bencher) {
|
|
516
|
+
let len = 65536;
|
|
517
|
+
let mut input = RandomInput::new(b, len);
|
|
518
|
+
b.iter(|| {
|
|
519
|
+
let mut hasher = blake3::Hasher::new();
|
|
520
|
+
let input = input.get();
|
|
521
|
+
hasher.update(&input[..1]);
|
|
522
|
+
hasher.update(&input[1..]);
|
|
523
|
+
hasher.finalize()
|
|
524
|
+
});
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
fn bench_xof(b: &mut Bencher, len: usize) {
|
|
528
|
+
b.bytes = len as u64;
|
|
529
|
+
let mut output = [0u8; 64 * BLOCK_LEN];
|
|
530
|
+
let output_slice = &mut output[..len];
|
|
531
|
+
let mut xof = blake3::Hasher::new().finalize_xof();
|
|
532
|
+
b.iter(|| xof.fill(output_slice));
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
#[bench]
|
|
536
|
+
fn bench_xof_01_block(b: &mut Bencher) {
|
|
537
|
+
bench_xof(b, 1 * BLOCK_LEN);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
#[bench]
|
|
541
|
+
fn bench_xof_02_blocks(b: &mut Bencher) {
|
|
542
|
+
bench_xof(b, 2 * BLOCK_LEN);
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
#[bench]
|
|
546
|
+
fn bench_xof_03_blocks(b: &mut Bencher) {
|
|
547
|
+
bench_xof(b, 3 * BLOCK_LEN);
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
#[bench]
|
|
551
|
+
fn bench_xof_04_blocks(b: &mut Bencher) {
|
|
552
|
+
bench_xof(b, 4 * BLOCK_LEN);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
#[bench]
|
|
556
|
+
fn bench_xof_05_blocks(b: &mut Bencher) {
|
|
557
|
+
bench_xof(b, 5 * BLOCK_LEN);
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
#[bench]
|
|
561
|
+
fn bench_xof_06_blocks(b: &mut Bencher) {
|
|
562
|
+
bench_xof(b, 6 * BLOCK_LEN);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
#[bench]
|
|
566
|
+
fn bench_xof_07_blocks(b: &mut Bencher) {
|
|
567
|
+
bench_xof(b, 7 * BLOCK_LEN);
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
#[bench]
|
|
571
|
+
fn bench_xof_08_blocks(b: &mut Bencher) {
|
|
572
|
+
bench_xof(b, 8 * BLOCK_LEN);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
#[bench]
|
|
576
|
+
fn bench_xof_09_blocks(b: &mut Bencher) {
|
|
577
|
+
bench_xof(b, 9 * BLOCK_LEN);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
#[bench]
|
|
581
|
+
fn bench_xof_10_blocks(b: &mut Bencher) {
|
|
582
|
+
bench_xof(b, 10 * BLOCK_LEN);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
#[bench]
|
|
586
|
+
fn bench_xof_11_blocks(b: &mut Bencher) {
|
|
587
|
+
bench_xof(b, 11 * BLOCK_LEN);
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
#[bench]
|
|
591
|
+
fn bench_xof_12_blocks(b: &mut Bencher) {
|
|
592
|
+
bench_xof(b, 12 * BLOCK_LEN);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
#[bench]
|
|
596
|
+
fn bench_xof_13_blocks(b: &mut Bencher) {
|
|
597
|
+
bench_xof(b, 13 * BLOCK_LEN);
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
#[bench]
|
|
601
|
+
fn bench_xof_14_blocks(b: &mut Bencher) {
|
|
602
|
+
bench_xof(b, 14 * BLOCK_LEN);
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
#[bench]
|
|
606
|
+
fn bench_xof_15_blocks(b: &mut Bencher) {
|
|
607
|
+
bench_xof(b, 15 * BLOCK_LEN);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
#[bench]
|
|
611
|
+
fn bench_xof_16_blocks(b: &mut Bencher) {
|
|
612
|
+
bench_xof(b, 16 * BLOCK_LEN);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
#[bench]
|
|
616
|
+
fn bench_xof_32_blocks(b: &mut Bencher) {
|
|
617
|
+
bench_xof(b, 32 * BLOCK_LEN);
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
#[bench]
|
|
621
|
+
fn bench_xof_64_blocks(b: &mut Bencher) {
|
|
622
|
+
bench_xof(b, 64 * BLOCK_LEN);
|
|
623
|
+
}
|