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,332 @@
|
|
|
1
|
+
#include <stdbool.h>
|
|
2
|
+
#include <stddef.h>
|
|
3
|
+
#include <stdint.h>
|
|
4
|
+
|
|
5
|
+
#include "blake3_impl.h"
|
|
6
|
+
|
|
7
|
+
#if defined(_MSC_VER)
|
|
8
|
+
#include <Windows.h>
|
|
9
|
+
#endif
|
|
10
|
+
|
|
11
|
+
#if defined(IS_X86)
|
|
12
|
+
#if defined(_MSC_VER)
|
|
13
|
+
#include <intrin.h>
|
|
14
|
+
#elif defined(__GNUC__)
|
|
15
|
+
#include <immintrin.h>
|
|
16
|
+
#else
|
|
17
|
+
#undef IS_X86 /* Unimplemented! */
|
|
18
|
+
#endif
|
|
19
|
+
#endif
|
|
20
|
+
|
|
21
|
+
#if !defined(BLAKE3_ATOMICS)
|
|
22
|
+
#if defined(__has_include)
|
|
23
|
+
#if __has_include(<stdatomic.h>) && !defined(_MSC_VER)
|
|
24
|
+
#define BLAKE3_ATOMICS 1
|
|
25
|
+
#else
|
|
26
|
+
#define BLAKE3_ATOMICS 0
|
|
27
|
+
#endif /* __has_include(<stdatomic.h>) && !defined(_MSC_VER) */
|
|
28
|
+
#else
|
|
29
|
+
#define BLAKE3_ATOMICS 0
|
|
30
|
+
#endif /* defined(__has_include) */
|
|
31
|
+
#endif /* BLAKE3_ATOMICS */
|
|
32
|
+
|
|
33
|
+
#if BLAKE3_ATOMICS
|
|
34
|
+
#define ATOMIC_INT _Atomic int
|
|
35
|
+
#define ATOMIC_LOAD(x) x
|
|
36
|
+
#define ATOMIC_STORE(x, y) x = y
|
|
37
|
+
#elif defined(_MSC_VER)
|
|
38
|
+
#define ATOMIC_INT LONG
|
|
39
|
+
#define ATOMIC_LOAD(x) InterlockedOr(&x, 0)
|
|
40
|
+
#define ATOMIC_STORE(x, y) InterlockedExchange(&x, y)
|
|
41
|
+
#else
|
|
42
|
+
#define ATOMIC_INT int
|
|
43
|
+
#define ATOMIC_LOAD(x) x
|
|
44
|
+
#define ATOMIC_STORE(x, y) x = y
|
|
45
|
+
#endif
|
|
46
|
+
|
|
47
|
+
#define MAYBE_UNUSED(x) (void)((x))
|
|
48
|
+
|
|
49
|
+
#if defined(IS_X86)
|
|
50
|
+
static uint64_t xgetbv(void) {
|
|
51
|
+
#if defined(_MSC_VER)
|
|
52
|
+
return _xgetbv(0);
|
|
53
|
+
#else
|
|
54
|
+
uint32_t eax = 0, edx = 0;
|
|
55
|
+
__asm__ __volatile__("xgetbv\n" : "=a"(eax), "=d"(edx) : "c"(0));
|
|
56
|
+
return ((uint64_t)edx << 32) | eax;
|
|
57
|
+
#endif
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
static void cpuid(uint32_t out[4], uint32_t id) {
|
|
61
|
+
#if defined(_MSC_VER)
|
|
62
|
+
__cpuid((int *)out, id);
|
|
63
|
+
#elif defined(__i386__) || defined(_M_IX86)
|
|
64
|
+
__asm__ __volatile__("movl %%ebx, %1\n"
|
|
65
|
+
"cpuid\n"
|
|
66
|
+
"xchgl %1, %%ebx\n"
|
|
67
|
+
: "=a"(out[0]), "=r"(out[1]), "=c"(out[2]), "=d"(out[3])
|
|
68
|
+
: "a"(id));
|
|
69
|
+
#else
|
|
70
|
+
__asm__ __volatile__("cpuid\n"
|
|
71
|
+
: "=a"(out[0]), "=b"(out[1]), "=c"(out[2]), "=d"(out[3])
|
|
72
|
+
: "a"(id));
|
|
73
|
+
#endif
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static void cpuidex(uint32_t out[4], uint32_t id, uint32_t sid) {
|
|
77
|
+
#if defined(_MSC_VER)
|
|
78
|
+
__cpuidex((int *)out, id, sid);
|
|
79
|
+
#elif defined(__i386__) || defined(_M_IX86)
|
|
80
|
+
__asm__ __volatile__("movl %%ebx, %1\n"
|
|
81
|
+
"cpuid\n"
|
|
82
|
+
"xchgl %1, %%ebx\n"
|
|
83
|
+
: "=a"(out[0]), "=r"(out[1]), "=c"(out[2]), "=d"(out[3])
|
|
84
|
+
: "a"(id), "c"(sid));
|
|
85
|
+
#else
|
|
86
|
+
__asm__ __volatile__("cpuid\n"
|
|
87
|
+
: "=a"(out[0]), "=b"(out[1]), "=c"(out[2]), "=d"(out[3])
|
|
88
|
+
: "a"(id), "c"(sid));
|
|
89
|
+
#endif
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
#endif
|
|
93
|
+
|
|
94
|
+
enum cpu_feature {
|
|
95
|
+
SSE2 = 1 << 0,
|
|
96
|
+
SSSE3 = 1 << 1,
|
|
97
|
+
SSE41 = 1 << 2,
|
|
98
|
+
AVX = 1 << 3,
|
|
99
|
+
AVX2 = 1 << 4,
|
|
100
|
+
AVX512F = 1 << 5,
|
|
101
|
+
AVX512VL = 1 << 6,
|
|
102
|
+
/* ... */
|
|
103
|
+
UNDEFINED = 1 << 30
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
#if !defined(BLAKE3_TESTING)
|
|
107
|
+
static /* Allow the variable to be controlled manually for testing */
|
|
108
|
+
#endif
|
|
109
|
+
ATOMIC_INT g_cpu_features = UNDEFINED;
|
|
110
|
+
|
|
111
|
+
#if !defined(BLAKE3_TESTING)
|
|
112
|
+
static
|
|
113
|
+
#endif
|
|
114
|
+
enum cpu_feature
|
|
115
|
+
get_cpu_features(void) {
|
|
116
|
+
|
|
117
|
+
/* If TSAN detects a data race here, try compiling with -DBLAKE3_ATOMICS=1 */
|
|
118
|
+
enum cpu_feature features = ATOMIC_LOAD(g_cpu_features);
|
|
119
|
+
if (features != UNDEFINED) {
|
|
120
|
+
return features;
|
|
121
|
+
} else {
|
|
122
|
+
#if defined(IS_X86)
|
|
123
|
+
uint32_t regs[4] = {0};
|
|
124
|
+
uint32_t *eax = ®s[0], *ebx = ®s[1], *ecx = ®s[2], *edx = ®s[3];
|
|
125
|
+
(void)edx;
|
|
126
|
+
features = 0;
|
|
127
|
+
cpuid(regs, 0);
|
|
128
|
+
const int max_id = *eax;
|
|
129
|
+
cpuid(regs, 1);
|
|
130
|
+
#if defined(__amd64__) || defined(_M_X64)
|
|
131
|
+
features |= SSE2;
|
|
132
|
+
#else
|
|
133
|
+
if (*edx & (1UL << 26))
|
|
134
|
+
features |= SSE2;
|
|
135
|
+
#endif
|
|
136
|
+
if (*ecx & (1UL << 9))
|
|
137
|
+
features |= SSSE3;
|
|
138
|
+
if (*ecx & (1UL << 19))
|
|
139
|
+
features |= SSE41;
|
|
140
|
+
|
|
141
|
+
if (*ecx & (1UL << 27)) { // OSXSAVE
|
|
142
|
+
const uint64_t mask = xgetbv();
|
|
143
|
+
if ((mask & 6) == 6) { // SSE and AVX states
|
|
144
|
+
if (*ecx & (1UL << 28))
|
|
145
|
+
features |= AVX;
|
|
146
|
+
if (max_id >= 7) {
|
|
147
|
+
cpuidex(regs, 7, 0);
|
|
148
|
+
if (*ebx & (1UL << 5))
|
|
149
|
+
features |= AVX2;
|
|
150
|
+
if ((mask & 224) == 224) { // Opmask, ZMM_Hi256, Hi16_Zmm
|
|
151
|
+
if (*ebx & (1UL << 31))
|
|
152
|
+
features |= AVX512VL;
|
|
153
|
+
if (*ebx & (1UL << 16))
|
|
154
|
+
features |= AVX512F;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
ATOMIC_STORE(g_cpu_features, features);
|
|
160
|
+
return features;
|
|
161
|
+
#else
|
|
162
|
+
/* How to detect NEON? */
|
|
163
|
+
return 0;
|
|
164
|
+
#endif
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
void blake3_compress_in_place(uint32_t cv[8],
|
|
169
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
170
|
+
uint8_t block_len, uint64_t counter,
|
|
171
|
+
uint8_t flags) {
|
|
172
|
+
#if defined(IS_X86)
|
|
173
|
+
const enum cpu_feature features = get_cpu_features();
|
|
174
|
+
MAYBE_UNUSED(features);
|
|
175
|
+
#if !defined(BLAKE3_NO_AVX512)
|
|
176
|
+
if (features & AVX512VL) {
|
|
177
|
+
blake3_compress_in_place_avx512(cv, block, block_len, counter, flags);
|
|
178
|
+
return;
|
|
179
|
+
}
|
|
180
|
+
#endif
|
|
181
|
+
#if !defined(BLAKE3_NO_SSE41)
|
|
182
|
+
if (features & SSE41) {
|
|
183
|
+
blake3_compress_in_place_sse41(cv, block, block_len, counter, flags);
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
#endif
|
|
187
|
+
#if !defined(BLAKE3_NO_SSE2)
|
|
188
|
+
if (features & SSE2) {
|
|
189
|
+
blake3_compress_in_place_sse2(cv, block, block_len, counter, flags);
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
#endif
|
|
193
|
+
#endif
|
|
194
|
+
blake3_compress_in_place_portable(cv, block, block_len, counter, flags);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
void blake3_compress_xof(const uint32_t cv[8],
|
|
198
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
199
|
+
uint8_t block_len, uint64_t counter, uint8_t flags,
|
|
200
|
+
uint8_t out[64]) {
|
|
201
|
+
#if defined(IS_X86)
|
|
202
|
+
const enum cpu_feature features = get_cpu_features();
|
|
203
|
+
MAYBE_UNUSED(features);
|
|
204
|
+
#if !defined(BLAKE3_NO_AVX512)
|
|
205
|
+
if (features & AVX512VL) {
|
|
206
|
+
blake3_compress_xof_avx512(cv, block, block_len, counter, flags, out);
|
|
207
|
+
return;
|
|
208
|
+
}
|
|
209
|
+
#endif
|
|
210
|
+
#if !defined(BLAKE3_NO_SSE41)
|
|
211
|
+
if (features & SSE41) {
|
|
212
|
+
blake3_compress_xof_sse41(cv, block, block_len, counter, flags, out);
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
#endif
|
|
216
|
+
#if !defined(BLAKE3_NO_SSE2)
|
|
217
|
+
if (features & SSE2) {
|
|
218
|
+
blake3_compress_xof_sse2(cv, block, block_len, counter, flags, out);
|
|
219
|
+
return;
|
|
220
|
+
}
|
|
221
|
+
#endif
|
|
222
|
+
#endif
|
|
223
|
+
blake3_compress_xof_portable(cv, block, block_len, counter, flags, out);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
void blake3_xof_many(const uint32_t cv[8],
|
|
228
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
229
|
+
uint8_t block_len, uint64_t counter, uint8_t flags,
|
|
230
|
+
uint8_t out[64], size_t outblocks) {
|
|
231
|
+
if (outblocks == 0) {
|
|
232
|
+
// The current assembly implementation always outputs at least 1 block.
|
|
233
|
+
return;
|
|
234
|
+
}
|
|
235
|
+
#if defined(IS_X86)
|
|
236
|
+
const enum cpu_feature features = get_cpu_features();
|
|
237
|
+
MAYBE_UNUSED(features);
|
|
238
|
+
#if !defined(_WIN32) && !defined(BLAKE3_NO_AVX512)
|
|
239
|
+
if (features & AVX512VL) {
|
|
240
|
+
blake3_xof_many_avx512(cv, block, block_len, counter, flags, out, outblocks);
|
|
241
|
+
return;
|
|
242
|
+
}
|
|
243
|
+
#endif
|
|
244
|
+
#endif
|
|
245
|
+
for(size_t i = 0; i < outblocks; ++i) {
|
|
246
|
+
blake3_compress_xof(cv, block, block_len, counter + i, flags, out + 64*i);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
void blake3_hash_many(const uint8_t *const *inputs, size_t num_inputs,
|
|
251
|
+
size_t blocks, const uint32_t key[8], uint64_t counter,
|
|
252
|
+
bool increment_counter, uint8_t flags,
|
|
253
|
+
uint8_t flags_start, uint8_t flags_end, uint8_t *out) {
|
|
254
|
+
#if defined(IS_X86)
|
|
255
|
+
const enum cpu_feature features = get_cpu_features();
|
|
256
|
+
MAYBE_UNUSED(features);
|
|
257
|
+
#if !defined(BLAKE3_NO_AVX512)
|
|
258
|
+
if ((features & (AVX512F|AVX512VL)) == (AVX512F|AVX512VL)) {
|
|
259
|
+
blake3_hash_many_avx512(inputs, num_inputs, blocks, key, counter,
|
|
260
|
+
increment_counter, flags, flags_start, flags_end,
|
|
261
|
+
out);
|
|
262
|
+
return;
|
|
263
|
+
}
|
|
264
|
+
#endif
|
|
265
|
+
#if !defined(BLAKE3_NO_AVX2)
|
|
266
|
+
if (features & AVX2) {
|
|
267
|
+
blake3_hash_many_avx2(inputs, num_inputs, blocks, key, counter,
|
|
268
|
+
increment_counter, flags, flags_start, flags_end,
|
|
269
|
+
out);
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
#endif
|
|
273
|
+
#if !defined(BLAKE3_NO_SSE41)
|
|
274
|
+
if (features & SSE41) {
|
|
275
|
+
blake3_hash_many_sse41(inputs, num_inputs, blocks, key, counter,
|
|
276
|
+
increment_counter, flags, flags_start, flags_end,
|
|
277
|
+
out);
|
|
278
|
+
return;
|
|
279
|
+
}
|
|
280
|
+
#endif
|
|
281
|
+
#if !defined(BLAKE3_NO_SSE2)
|
|
282
|
+
if (features & SSE2) {
|
|
283
|
+
blake3_hash_many_sse2(inputs, num_inputs, blocks, key, counter,
|
|
284
|
+
increment_counter, flags, flags_start, flags_end,
|
|
285
|
+
out);
|
|
286
|
+
return;
|
|
287
|
+
}
|
|
288
|
+
#endif
|
|
289
|
+
#endif
|
|
290
|
+
|
|
291
|
+
#if BLAKE3_USE_NEON == 1
|
|
292
|
+
blake3_hash_many_neon(inputs, num_inputs, blocks, key, counter,
|
|
293
|
+
increment_counter, flags, flags_start, flags_end, out);
|
|
294
|
+
return;
|
|
295
|
+
#endif
|
|
296
|
+
|
|
297
|
+
blake3_hash_many_portable(inputs, num_inputs, blocks, key, counter,
|
|
298
|
+
increment_counter, flags, flags_start, flags_end,
|
|
299
|
+
out);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
// The dynamically detected SIMD degree of the current platform.
|
|
303
|
+
size_t blake3_simd_degree(void) {
|
|
304
|
+
#if defined(IS_X86)
|
|
305
|
+
const enum cpu_feature features = get_cpu_features();
|
|
306
|
+
MAYBE_UNUSED(features);
|
|
307
|
+
#if !defined(BLAKE3_NO_AVX512)
|
|
308
|
+
if ((features & (AVX512F|AVX512VL)) == (AVX512F|AVX512VL)) {
|
|
309
|
+
return 16;
|
|
310
|
+
}
|
|
311
|
+
#endif
|
|
312
|
+
#if !defined(BLAKE3_NO_AVX2)
|
|
313
|
+
if (features & AVX2) {
|
|
314
|
+
return 8;
|
|
315
|
+
}
|
|
316
|
+
#endif
|
|
317
|
+
#if !defined(BLAKE3_NO_SSE41)
|
|
318
|
+
if (features & SSE41) {
|
|
319
|
+
return 4;
|
|
320
|
+
}
|
|
321
|
+
#endif
|
|
322
|
+
#if !defined(BLAKE3_NO_SSE2)
|
|
323
|
+
if (features & SSE2) {
|
|
324
|
+
return 4;
|
|
325
|
+
}
|
|
326
|
+
#endif
|
|
327
|
+
#endif
|
|
328
|
+
#if BLAKE3_USE_NEON == 1
|
|
329
|
+
return 4;
|
|
330
|
+
#endif
|
|
331
|
+
return 1;
|
|
332
|
+
}
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
#ifndef BLAKE3_IMPL_H
|
|
2
|
+
#define BLAKE3_IMPL_H
|
|
3
|
+
|
|
4
|
+
#include <assert.h>
|
|
5
|
+
#include <stdbool.h>
|
|
6
|
+
#include <stddef.h>
|
|
7
|
+
#include <stdint.h>
|
|
8
|
+
#include <string.h>
|
|
9
|
+
|
|
10
|
+
#include "blake3.h"
|
|
11
|
+
|
|
12
|
+
#ifdef __cplusplus
|
|
13
|
+
extern "C" {
|
|
14
|
+
#endif
|
|
15
|
+
|
|
16
|
+
// internal flags
|
|
17
|
+
enum blake3_flags {
|
|
18
|
+
CHUNK_START = 1 << 0,
|
|
19
|
+
CHUNK_END = 1 << 1,
|
|
20
|
+
PARENT = 1 << 2,
|
|
21
|
+
ROOT = 1 << 3,
|
|
22
|
+
KEYED_HASH = 1 << 4,
|
|
23
|
+
DERIVE_KEY_CONTEXT = 1 << 5,
|
|
24
|
+
DERIVE_KEY_MATERIAL = 1 << 6,
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
// This C implementation tries to support recent versions of GCC, Clang, and
|
|
28
|
+
// MSVC.
|
|
29
|
+
#if defined(_MSC_VER)
|
|
30
|
+
#define INLINE static __forceinline
|
|
31
|
+
#else
|
|
32
|
+
#define INLINE static inline __attribute__((always_inline))
|
|
33
|
+
#endif
|
|
34
|
+
|
|
35
|
+
#ifdef __cplusplus
|
|
36
|
+
#define NOEXCEPT noexcept
|
|
37
|
+
#else
|
|
38
|
+
#define NOEXCEPT
|
|
39
|
+
#endif
|
|
40
|
+
|
|
41
|
+
#if (defined(__x86_64__) || defined(_M_X64)) && !defined(_M_ARM64EC)
|
|
42
|
+
#define IS_X86
|
|
43
|
+
#define IS_X86_64
|
|
44
|
+
#endif
|
|
45
|
+
|
|
46
|
+
#if defined(__i386__) || defined(_M_IX86)
|
|
47
|
+
#define IS_X86
|
|
48
|
+
#define IS_X86_32
|
|
49
|
+
#endif
|
|
50
|
+
|
|
51
|
+
#if defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC)
|
|
52
|
+
#define IS_AARCH64
|
|
53
|
+
#endif
|
|
54
|
+
|
|
55
|
+
#if defined(IS_X86)
|
|
56
|
+
#if defined(_MSC_VER)
|
|
57
|
+
#include <intrin.h>
|
|
58
|
+
#endif
|
|
59
|
+
#endif
|
|
60
|
+
|
|
61
|
+
#if !defined(BLAKE3_USE_NEON)
|
|
62
|
+
// If BLAKE3_USE_NEON not manually set, autodetect based on AArch64ness
|
|
63
|
+
#if defined(IS_AARCH64)
|
|
64
|
+
#if defined(__ARM_BIG_ENDIAN)
|
|
65
|
+
#define BLAKE3_USE_NEON 0
|
|
66
|
+
#else
|
|
67
|
+
#define BLAKE3_USE_NEON 1
|
|
68
|
+
#endif
|
|
69
|
+
#else
|
|
70
|
+
#define BLAKE3_USE_NEON 0
|
|
71
|
+
#endif
|
|
72
|
+
#endif
|
|
73
|
+
|
|
74
|
+
#if defined(IS_X86)
|
|
75
|
+
#define MAX_SIMD_DEGREE 16
|
|
76
|
+
#elif BLAKE3_USE_NEON == 1
|
|
77
|
+
#define MAX_SIMD_DEGREE 4
|
|
78
|
+
#else
|
|
79
|
+
#define MAX_SIMD_DEGREE 1
|
|
80
|
+
#endif
|
|
81
|
+
|
|
82
|
+
// There are some places where we want a static size that's equal to the
|
|
83
|
+
// MAX_SIMD_DEGREE, but also at least 2.
|
|
84
|
+
#define MAX_SIMD_DEGREE_OR_2 (MAX_SIMD_DEGREE > 2 ? MAX_SIMD_DEGREE : 2)
|
|
85
|
+
|
|
86
|
+
static const uint32_t IV[8] = {0x6A09E667UL, 0xBB67AE85UL, 0x3C6EF372UL,
|
|
87
|
+
0xA54FF53AUL, 0x510E527FUL, 0x9B05688CUL,
|
|
88
|
+
0x1F83D9ABUL, 0x5BE0CD19UL};
|
|
89
|
+
|
|
90
|
+
static const uint8_t MSG_SCHEDULE[7][16] = {
|
|
91
|
+
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15},
|
|
92
|
+
{2, 6, 3, 10, 7, 0, 4, 13, 1, 11, 12, 5, 9, 14, 15, 8},
|
|
93
|
+
{3, 4, 10, 12, 13, 2, 7, 14, 6, 5, 9, 0, 11, 15, 8, 1},
|
|
94
|
+
{10, 7, 12, 9, 14, 3, 13, 15, 4, 0, 11, 2, 5, 8, 1, 6},
|
|
95
|
+
{12, 13, 9, 11, 15, 10, 14, 8, 7, 2, 5, 3, 0, 1, 6, 4},
|
|
96
|
+
{9, 14, 11, 5, 8, 12, 15, 1, 13, 3, 0, 10, 2, 6, 4, 7},
|
|
97
|
+
{11, 15, 5, 0, 1, 9, 8, 6, 14, 10, 2, 12, 3, 4, 7, 13},
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
/* Find index of the highest set bit */
|
|
101
|
+
/* x is assumed to be nonzero. */
|
|
102
|
+
static unsigned int highest_one(uint64_t x) {
|
|
103
|
+
#if defined(__GNUC__) || defined(__clang__)
|
|
104
|
+
return 63 ^ (unsigned int)__builtin_clzll(x);
|
|
105
|
+
#elif defined(_MSC_VER) && defined(IS_X86_64)
|
|
106
|
+
unsigned long index;
|
|
107
|
+
_BitScanReverse64(&index, x);
|
|
108
|
+
return index;
|
|
109
|
+
#elif defined(_MSC_VER) && defined(IS_X86_32)
|
|
110
|
+
if(x >> 32) {
|
|
111
|
+
unsigned long index;
|
|
112
|
+
_BitScanReverse(&index, (unsigned long)(x >> 32));
|
|
113
|
+
return 32 + index;
|
|
114
|
+
} else {
|
|
115
|
+
unsigned long index;
|
|
116
|
+
_BitScanReverse(&index, (unsigned long)x);
|
|
117
|
+
return index;
|
|
118
|
+
}
|
|
119
|
+
#else
|
|
120
|
+
unsigned int c = 0;
|
|
121
|
+
if(x & 0xffffffff00000000ULL) { x >>= 32; c += 32; }
|
|
122
|
+
if(x & 0x00000000ffff0000ULL) { x >>= 16; c += 16; }
|
|
123
|
+
if(x & 0x000000000000ff00ULL) { x >>= 8; c += 8; }
|
|
124
|
+
if(x & 0x00000000000000f0ULL) { x >>= 4; c += 4; }
|
|
125
|
+
if(x & 0x000000000000000cULL) { x >>= 2; c += 2; }
|
|
126
|
+
if(x & 0x0000000000000002ULL) { c += 1; }
|
|
127
|
+
return c;
|
|
128
|
+
#endif
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// Count the number of 1 bits.
|
|
132
|
+
INLINE unsigned int popcnt(uint64_t x) {
|
|
133
|
+
#if defined(__GNUC__) || defined(__clang__)
|
|
134
|
+
return (unsigned int)__builtin_popcountll(x);
|
|
135
|
+
#else
|
|
136
|
+
unsigned int count = 0;
|
|
137
|
+
while (x != 0) {
|
|
138
|
+
count += 1;
|
|
139
|
+
x &= x - 1;
|
|
140
|
+
}
|
|
141
|
+
return count;
|
|
142
|
+
#endif
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Largest power of two less than or equal to x. As a special case, returns 1
|
|
146
|
+
// when x is 0.
|
|
147
|
+
INLINE uint64_t round_down_to_power_of_2(uint64_t x) {
|
|
148
|
+
return 1ULL << highest_one(x | 1);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
INLINE uint32_t counter_low(uint64_t counter) { return (uint32_t)counter; }
|
|
152
|
+
|
|
153
|
+
INLINE uint32_t counter_high(uint64_t counter) {
|
|
154
|
+
return (uint32_t)(counter >> 32);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
INLINE uint32_t load32(const void *src) {
|
|
158
|
+
const uint8_t *p = (const uint8_t *)src;
|
|
159
|
+
return ((uint32_t)(p[0]) << 0) | ((uint32_t)(p[1]) << 8) |
|
|
160
|
+
((uint32_t)(p[2]) << 16) | ((uint32_t)(p[3]) << 24);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
INLINE void load_key_words(const uint8_t key[BLAKE3_KEY_LEN],
|
|
164
|
+
uint32_t key_words[8]) {
|
|
165
|
+
key_words[0] = load32(&key[0 * 4]);
|
|
166
|
+
key_words[1] = load32(&key[1 * 4]);
|
|
167
|
+
key_words[2] = load32(&key[2 * 4]);
|
|
168
|
+
key_words[3] = load32(&key[3 * 4]);
|
|
169
|
+
key_words[4] = load32(&key[4 * 4]);
|
|
170
|
+
key_words[5] = load32(&key[5 * 4]);
|
|
171
|
+
key_words[6] = load32(&key[6 * 4]);
|
|
172
|
+
key_words[7] = load32(&key[7 * 4]);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
INLINE void load_block_words(const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
176
|
+
uint32_t block_words[16]) {
|
|
177
|
+
for (size_t i = 0; i < 16; i++) {
|
|
178
|
+
block_words[i] = load32(&block[i * 4]);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
INLINE void store32(void *dst, uint32_t w) {
|
|
183
|
+
uint8_t *p = (uint8_t *)dst;
|
|
184
|
+
p[0] = (uint8_t)(w >> 0);
|
|
185
|
+
p[1] = (uint8_t)(w >> 8);
|
|
186
|
+
p[2] = (uint8_t)(w >> 16);
|
|
187
|
+
p[3] = (uint8_t)(w >> 24);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
INLINE void store_cv_words(uint8_t bytes_out[32], uint32_t cv_words[8]) {
|
|
191
|
+
store32(&bytes_out[0 * 4], cv_words[0]);
|
|
192
|
+
store32(&bytes_out[1 * 4], cv_words[1]);
|
|
193
|
+
store32(&bytes_out[2 * 4], cv_words[2]);
|
|
194
|
+
store32(&bytes_out[3 * 4], cv_words[3]);
|
|
195
|
+
store32(&bytes_out[4 * 4], cv_words[4]);
|
|
196
|
+
store32(&bytes_out[5 * 4], cv_words[5]);
|
|
197
|
+
store32(&bytes_out[6 * 4], cv_words[6]);
|
|
198
|
+
store32(&bytes_out[7 * 4], cv_words[7]);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
void blake3_compress_in_place(uint32_t cv[8],
|
|
202
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
203
|
+
uint8_t block_len, uint64_t counter,
|
|
204
|
+
uint8_t flags);
|
|
205
|
+
|
|
206
|
+
void blake3_compress_xof(const uint32_t cv[8],
|
|
207
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
208
|
+
uint8_t block_len, uint64_t counter, uint8_t flags,
|
|
209
|
+
uint8_t out[64]);
|
|
210
|
+
|
|
211
|
+
void blake3_xof_many(const uint32_t cv[8],
|
|
212
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
213
|
+
uint8_t block_len, uint64_t counter, uint8_t flags,
|
|
214
|
+
uint8_t out[64], size_t outblocks);
|
|
215
|
+
|
|
216
|
+
void blake3_hash_many(const uint8_t *const *inputs, size_t num_inputs,
|
|
217
|
+
size_t blocks, const uint32_t key[8], uint64_t counter,
|
|
218
|
+
bool increment_counter, uint8_t flags,
|
|
219
|
+
uint8_t flags_start, uint8_t flags_end, uint8_t *out);
|
|
220
|
+
|
|
221
|
+
size_t blake3_simd_degree(void);
|
|
222
|
+
|
|
223
|
+
BLAKE3_PRIVATE size_t blake3_compress_subtree_wide(const uint8_t *input, size_t input_len,
|
|
224
|
+
const uint32_t key[8],
|
|
225
|
+
uint64_t chunk_counter, uint8_t flags,
|
|
226
|
+
uint8_t *out, bool use_tbb);
|
|
227
|
+
|
|
228
|
+
#if defined(BLAKE3_USE_TBB)
|
|
229
|
+
BLAKE3_PRIVATE void blake3_compress_subtree_wide_join_tbb(
|
|
230
|
+
// shared params
|
|
231
|
+
const uint32_t key[8], uint8_t flags, bool use_tbb,
|
|
232
|
+
// left-hand side params
|
|
233
|
+
const uint8_t *l_input, size_t l_input_len, uint64_t l_chunk_counter,
|
|
234
|
+
uint8_t *l_cvs, size_t *l_n,
|
|
235
|
+
// right-hand side params
|
|
236
|
+
const uint8_t *r_input, size_t r_input_len, uint64_t r_chunk_counter,
|
|
237
|
+
uint8_t *r_cvs, size_t *r_n) NOEXCEPT;
|
|
238
|
+
#endif
|
|
239
|
+
|
|
240
|
+
// Declarations for implementation-specific functions.
|
|
241
|
+
void blake3_compress_in_place_portable(uint32_t cv[8],
|
|
242
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
243
|
+
uint8_t block_len, uint64_t counter,
|
|
244
|
+
uint8_t flags);
|
|
245
|
+
|
|
246
|
+
void blake3_compress_xof_portable(const uint32_t cv[8],
|
|
247
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
248
|
+
uint8_t block_len, uint64_t counter,
|
|
249
|
+
uint8_t flags, uint8_t out[64]);
|
|
250
|
+
|
|
251
|
+
void blake3_hash_many_portable(const uint8_t *const *inputs, size_t num_inputs,
|
|
252
|
+
size_t blocks, const uint32_t key[8],
|
|
253
|
+
uint64_t counter, bool increment_counter,
|
|
254
|
+
uint8_t flags, uint8_t flags_start,
|
|
255
|
+
uint8_t flags_end, uint8_t *out);
|
|
256
|
+
|
|
257
|
+
#if defined(IS_X86)
|
|
258
|
+
#if !defined(BLAKE3_NO_SSE2)
|
|
259
|
+
void blake3_compress_in_place_sse2(uint32_t cv[8],
|
|
260
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
261
|
+
uint8_t block_len, uint64_t counter,
|
|
262
|
+
uint8_t flags);
|
|
263
|
+
void blake3_compress_xof_sse2(const uint32_t cv[8],
|
|
264
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
265
|
+
uint8_t block_len, uint64_t counter,
|
|
266
|
+
uint8_t flags, uint8_t out[64]);
|
|
267
|
+
void blake3_hash_many_sse2(const uint8_t *const *inputs, size_t num_inputs,
|
|
268
|
+
size_t blocks, const uint32_t key[8],
|
|
269
|
+
uint64_t counter, bool increment_counter,
|
|
270
|
+
uint8_t flags, uint8_t flags_start,
|
|
271
|
+
uint8_t flags_end, uint8_t *out);
|
|
272
|
+
#endif
|
|
273
|
+
#if !defined(BLAKE3_NO_SSE41)
|
|
274
|
+
void blake3_compress_in_place_sse41(uint32_t cv[8],
|
|
275
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
276
|
+
uint8_t block_len, uint64_t counter,
|
|
277
|
+
uint8_t flags);
|
|
278
|
+
void blake3_compress_xof_sse41(const uint32_t cv[8],
|
|
279
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
280
|
+
uint8_t block_len, uint64_t counter,
|
|
281
|
+
uint8_t flags, uint8_t out[64]);
|
|
282
|
+
void blake3_hash_many_sse41(const uint8_t *const *inputs, size_t num_inputs,
|
|
283
|
+
size_t blocks, const uint32_t key[8],
|
|
284
|
+
uint64_t counter, bool increment_counter,
|
|
285
|
+
uint8_t flags, uint8_t flags_start,
|
|
286
|
+
uint8_t flags_end, uint8_t *out);
|
|
287
|
+
#endif
|
|
288
|
+
#if !defined(BLAKE3_NO_AVX2)
|
|
289
|
+
void blake3_hash_many_avx2(const uint8_t *const *inputs, size_t num_inputs,
|
|
290
|
+
size_t blocks, const uint32_t key[8],
|
|
291
|
+
uint64_t counter, bool increment_counter,
|
|
292
|
+
uint8_t flags, uint8_t flags_start,
|
|
293
|
+
uint8_t flags_end, uint8_t *out);
|
|
294
|
+
#endif
|
|
295
|
+
#if !defined(BLAKE3_NO_AVX512)
|
|
296
|
+
void blake3_compress_in_place_avx512(uint32_t cv[8],
|
|
297
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
298
|
+
uint8_t block_len, uint64_t counter,
|
|
299
|
+
uint8_t flags);
|
|
300
|
+
|
|
301
|
+
void blake3_compress_xof_avx512(const uint32_t cv[8],
|
|
302
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
303
|
+
uint8_t block_len, uint64_t counter,
|
|
304
|
+
uint8_t flags, uint8_t out[64]);
|
|
305
|
+
|
|
306
|
+
void blake3_hash_many_avx512(const uint8_t *const *inputs, size_t num_inputs,
|
|
307
|
+
size_t blocks, const uint32_t key[8],
|
|
308
|
+
uint64_t counter, bool increment_counter,
|
|
309
|
+
uint8_t flags, uint8_t flags_start,
|
|
310
|
+
uint8_t flags_end, uint8_t *out);
|
|
311
|
+
|
|
312
|
+
#if !defined(_WIN32)
|
|
313
|
+
void blake3_xof_many_avx512(const uint32_t cv[8],
|
|
314
|
+
const uint8_t block[BLAKE3_BLOCK_LEN],
|
|
315
|
+
uint8_t block_len, uint64_t counter, uint8_t flags,
|
|
316
|
+
uint8_t* out, size_t outblocks);
|
|
317
|
+
#endif
|
|
318
|
+
#endif
|
|
319
|
+
#endif
|
|
320
|
+
|
|
321
|
+
#if BLAKE3_USE_NEON == 1
|
|
322
|
+
void blake3_hash_many_neon(const uint8_t *const *inputs, size_t num_inputs,
|
|
323
|
+
size_t blocks, const uint32_t key[8],
|
|
324
|
+
uint64_t counter, bool increment_counter,
|
|
325
|
+
uint8_t flags, uint8_t flags_start,
|
|
326
|
+
uint8_t flags_end, uint8_t *out);
|
|
327
|
+
#endif
|
|
328
|
+
|
|
329
|
+
#ifdef __cplusplus
|
|
330
|
+
}
|
|
331
|
+
#endif
|
|
332
|
+
|
|
333
|
+
#endif /* BLAKE3_IMPL_H */
|