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,564 @@
|
|
|
1
|
+
use anyhow::{bail, ensure};
|
|
2
|
+
use clap::Parser;
|
|
3
|
+
use std::cmp;
|
|
4
|
+
use std::fs::File;
|
|
5
|
+
use std::io;
|
|
6
|
+
use std::io::prelude::*;
|
|
7
|
+
use std::path::{Path, PathBuf};
|
|
8
|
+
|
|
9
|
+
#[cfg(test)]
|
|
10
|
+
mod unit_tests;
|
|
11
|
+
|
|
12
|
+
const NAME: &str = "b3sum";
|
|
13
|
+
|
|
14
|
+
const DERIVE_KEY_ARG: &str = "derive_key";
|
|
15
|
+
const KEYED_ARG: &str = "keyed";
|
|
16
|
+
const LENGTH_ARG: &str = "length";
|
|
17
|
+
const NO_NAMES_ARG: &str = "no_names";
|
|
18
|
+
const RAW_ARG: &str = "raw";
|
|
19
|
+
const TAG_ARG: &str = "tag";
|
|
20
|
+
const CHECK_ARG: &str = "check";
|
|
21
|
+
|
|
22
|
+
#[derive(Parser)]
|
|
23
|
+
#[command(version, max_term_width(100))]
|
|
24
|
+
struct Inner {
|
|
25
|
+
/// Files to hash, or checkfiles to check
|
|
26
|
+
///
|
|
27
|
+
/// When no file is given, or when - is given, read standard input.
|
|
28
|
+
file: Vec<PathBuf>,
|
|
29
|
+
|
|
30
|
+
/// Use the keyed mode, reading the 32-byte key from stdin
|
|
31
|
+
#[arg(long, requires("file"))]
|
|
32
|
+
keyed: bool,
|
|
33
|
+
|
|
34
|
+
/// Use the key derivation mode, with the given context string
|
|
35
|
+
///
|
|
36
|
+
/// Cannot be used with --keyed.
|
|
37
|
+
#[arg(long, value_name("CONTEXT"), conflicts_with(KEYED_ARG))]
|
|
38
|
+
derive_key: Option<String>,
|
|
39
|
+
|
|
40
|
+
/// The number of output bytes, before hex encoding
|
|
41
|
+
#[arg(
|
|
42
|
+
short,
|
|
43
|
+
long,
|
|
44
|
+
default_value_t = blake3::OUT_LEN as u64,
|
|
45
|
+
value_name("LEN")
|
|
46
|
+
)]
|
|
47
|
+
length: u64,
|
|
48
|
+
|
|
49
|
+
/// The starting output byte offset, before hex encoding
|
|
50
|
+
#[arg(long, default_value_t = 0, value_name("SEEK"))]
|
|
51
|
+
seek: u64,
|
|
52
|
+
|
|
53
|
+
/// The maximum number of threads to use
|
|
54
|
+
///
|
|
55
|
+
/// By default, this is the number of logical cores. If this flag is
|
|
56
|
+
/// omitted, or if its value is 0, RAYON_NUM_THREADS is also respected.
|
|
57
|
+
#[arg(long, value_name("NUM"))]
|
|
58
|
+
num_threads: Option<usize>,
|
|
59
|
+
|
|
60
|
+
/// Disable memory mapping
|
|
61
|
+
///
|
|
62
|
+
/// Currently this also disables multithreading.
|
|
63
|
+
#[arg(long)]
|
|
64
|
+
no_mmap: bool,
|
|
65
|
+
|
|
66
|
+
/// Omit filenames in the output
|
|
67
|
+
#[arg(long)]
|
|
68
|
+
no_names: bool,
|
|
69
|
+
|
|
70
|
+
/// Write raw output bytes to stdout, rather than hex
|
|
71
|
+
///
|
|
72
|
+
/// --no-names is implied. In this case, only a single input is allowed.
|
|
73
|
+
#[arg(long)]
|
|
74
|
+
raw: bool,
|
|
75
|
+
|
|
76
|
+
/// Output BSD-style checksums: BLAKE3 ([FILE]) = [HASH]
|
|
77
|
+
#[arg(long)]
|
|
78
|
+
tag: bool,
|
|
79
|
+
|
|
80
|
+
/// Read BLAKE3 sums from the [FILE]s and check them
|
|
81
|
+
#[arg(
|
|
82
|
+
short,
|
|
83
|
+
long,
|
|
84
|
+
conflicts_with(DERIVE_KEY_ARG),
|
|
85
|
+
conflicts_with(KEYED_ARG),
|
|
86
|
+
conflicts_with(LENGTH_ARG),
|
|
87
|
+
conflicts_with(RAW_ARG),
|
|
88
|
+
conflicts_with(TAG_ARG),
|
|
89
|
+
conflicts_with(NO_NAMES_ARG)
|
|
90
|
+
)]
|
|
91
|
+
check: bool,
|
|
92
|
+
|
|
93
|
+
/// Skip printing OK for each checked file
|
|
94
|
+
///
|
|
95
|
+
/// Must be used with --check.
|
|
96
|
+
#[arg(long, requires(CHECK_ARG))]
|
|
97
|
+
quiet: bool,
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
struct Args {
|
|
101
|
+
inner: Inner,
|
|
102
|
+
file_args: Vec<PathBuf>,
|
|
103
|
+
base_hasher: blake3::Hasher,
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
impl Args {
|
|
107
|
+
fn parse() -> anyhow::Result<Self> {
|
|
108
|
+
// wild::args_os() is equivalent to std::env::args_os() on Unix,
|
|
109
|
+
// but on Windows it adds support for globbing.
|
|
110
|
+
let inner = Inner::parse_from(wild::args_os());
|
|
111
|
+
let file_args = if !inner.file.is_empty() {
|
|
112
|
+
inner.file.clone()
|
|
113
|
+
} else {
|
|
114
|
+
vec!["-".into()]
|
|
115
|
+
};
|
|
116
|
+
if inner.raw && file_args.len() > 1 {
|
|
117
|
+
bail!("Only one filename can be provided when using --raw");
|
|
118
|
+
}
|
|
119
|
+
let base_hasher = if inner.keyed {
|
|
120
|
+
// In keyed mode, since stdin is used for the key, we can't handle
|
|
121
|
+
// `-` arguments. Input::open handles that case below.
|
|
122
|
+
blake3::Hasher::new_keyed(&read_key_from_stdin()?)
|
|
123
|
+
} else if let Some(ref context) = inner.derive_key {
|
|
124
|
+
blake3::Hasher::new_derive_key(context)
|
|
125
|
+
} else {
|
|
126
|
+
blake3::Hasher::new()
|
|
127
|
+
};
|
|
128
|
+
Ok(Self {
|
|
129
|
+
inner,
|
|
130
|
+
file_args,
|
|
131
|
+
base_hasher,
|
|
132
|
+
})
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
fn num_threads(&self) -> Option<usize> {
|
|
136
|
+
self.inner.num_threads
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
fn check(&self) -> bool {
|
|
140
|
+
self.inner.check
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
fn raw(&self) -> bool {
|
|
144
|
+
self.inner.raw
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
fn tag(&self) -> bool {
|
|
148
|
+
self.inner.tag
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
fn no_mmap(&self) -> bool {
|
|
152
|
+
self.inner.no_mmap
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
fn no_names(&self) -> bool {
|
|
156
|
+
self.inner.no_names
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
fn len(&self) -> u64 {
|
|
160
|
+
self.inner.length
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
fn seek(&self) -> u64 {
|
|
164
|
+
self.inner.seek
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
fn keyed(&self) -> bool {
|
|
168
|
+
self.inner.keyed
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
fn quiet(&self) -> bool {
|
|
172
|
+
self.inner.quiet
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
fn hash_path(args: &Args, path: &Path) -> anyhow::Result<blake3::OutputReader> {
|
|
177
|
+
let mut hasher = args.base_hasher.clone();
|
|
178
|
+
if path == Path::new("-") {
|
|
179
|
+
if args.keyed() {
|
|
180
|
+
bail!("Cannot open `-` in keyed mode");
|
|
181
|
+
}
|
|
182
|
+
hasher.update_reader(io::stdin().lock())?;
|
|
183
|
+
} else if args.no_mmap() {
|
|
184
|
+
hasher.update_reader(File::open(path)?)?;
|
|
185
|
+
} else {
|
|
186
|
+
// The fast path: Try to mmap the file and hash it with multiple threads.
|
|
187
|
+
hasher.update_mmap_rayon(path)?;
|
|
188
|
+
}
|
|
189
|
+
let mut output_reader = hasher.finalize_xof();
|
|
190
|
+
output_reader.set_position(args.seek());
|
|
191
|
+
Ok(output_reader)
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
fn write_hex_output(mut output: blake3::OutputReader, args: &Args) -> anyhow::Result<()> {
|
|
195
|
+
// Encoding multiples of the 64 bytes is most efficient.
|
|
196
|
+
// TODO: This computes each output block twice when the --seek argument isn't a multiple of 64.
|
|
197
|
+
// We'll refactor all of this soon anyway, once SIMD optimizations are available for the XOF.
|
|
198
|
+
let mut len = args.len();
|
|
199
|
+
let mut block = [0; blake3::BLOCK_LEN];
|
|
200
|
+
while len > 0 {
|
|
201
|
+
output.fill(&mut block);
|
|
202
|
+
let hex_str = hex::encode(&block[..]);
|
|
203
|
+
let take_bytes = cmp::min(len, block.len() as u64);
|
|
204
|
+
print!("{}", &hex_str[..2 * take_bytes as usize]);
|
|
205
|
+
len -= take_bytes;
|
|
206
|
+
}
|
|
207
|
+
Ok(())
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
fn write_raw_output(output: blake3::OutputReader, args: &Args) -> anyhow::Result<()> {
|
|
211
|
+
let mut output = output.take(args.len());
|
|
212
|
+
let stdout = std::io::stdout();
|
|
213
|
+
let mut handler = stdout.lock();
|
|
214
|
+
std::io::copy(&mut output, &mut handler)?;
|
|
215
|
+
|
|
216
|
+
Ok(())
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
fn read_key_from_stdin() -> anyhow::Result<[u8; blake3::KEY_LEN]> {
|
|
220
|
+
let mut bytes = Vec::with_capacity(blake3::KEY_LEN + 1);
|
|
221
|
+
let n = std::io::stdin()
|
|
222
|
+
.lock()
|
|
223
|
+
.take(blake3::KEY_LEN as u64 + 1)
|
|
224
|
+
.read_to_end(&mut bytes)?;
|
|
225
|
+
if n < blake3::KEY_LEN {
|
|
226
|
+
bail!(
|
|
227
|
+
"expected {} key bytes from stdin, found {}",
|
|
228
|
+
blake3::KEY_LEN,
|
|
229
|
+
n,
|
|
230
|
+
)
|
|
231
|
+
} else if n > blake3::KEY_LEN {
|
|
232
|
+
bail!("read more than {} key bytes from stdin", blake3::KEY_LEN)
|
|
233
|
+
} else {
|
|
234
|
+
Ok(bytes[..blake3::KEY_LEN].try_into().unwrap())
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
struct FilepathString {
|
|
239
|
+
filepath_string: String,
|
|
240
|
+
is_escaped: bool,
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
// returns (string, did_escape)
|
|
244
|
+
fn filepath_to_string(filepath: &Path) -> FilepathString {
|
|
245
|
+
let unicode_cow = filepath.to_string_lossy();
|
|
246
|
+
let mut filepath_string = unicode_cow.to_string();
|
|
247
|
+
// If we're on Windows, normalize backslashes to forward slashes. This
|
|
248
|
+
// avoids a lot of ugly escaping in the common case, and it makes
|
|
249
|
+
// checkfiles created on Windows more likely to be portable to Unix. It
|
|
250
|
+
// also allows us to set a blanket "no backslashes allowed in checkfiles on
|
|
251
|
+
// Windows" rule, rather than allowing a Unix backslash to potentially get
|
|
252
|
+
// interpreted as a directory separator on Windows.
|
|
253
|
+
if cfg!(windows) {
|
|
254
|
+
filepath_string = filepath_string.replace('\\', "/");
|
|
255
|
+
}
|
|
256
|
+
let mut is_escaped = false;
|
|
257
|
+
if filepath_string.contains(['\\', '\n', '\r']) {
|
|
258
|
+
filepath_string = filepath_string
|
|
259
|
+
.replace('\\', "\\\\")
|
|
260
|
+
.replace('\n', "\\n")
|
|
261
|
+
.replace('\r', "\\r");
|
|
262
|
+
is_escaped = true;
|
|
263
|
+
}
|
|
264
|
+
FilepathString {
|
|
265
|
+
filepath_string,
|
|
266
|
+
is_escaped,
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
fn hex_half_byte(c: char) -> anyhow::Result<u8> {
|
|
271
|
+
// The hex characters in the hash must be lowercase for now, though we
|
|
272
|
+
// could support uppercase too if we wanted to.
|
|
273
|
+
if '0' <= c && c <= '9' {
|
|
274
|
+
return Ok(c as u8 - '0' as u8);
|
|
275
|
+
}
|
|
276
|
+
if 'a' <= c && c <= 'f' {
|
|
277
|
+
return Ok(c as u8 - 'a' as u8 + 10);
|
|
278
|
+
}
|
|
279
|
+
bail!("Invalid hex");
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
// The `check` command is a security tool. That means it's much better for a
|
|
283
|
+
// check to fail more often than it should (a false negative), than for a check
|
|
284
|
+
// to ever succeed when it shouldn't (a false positive). By forbidding certain
|
|
285
|
+
// characters in checked filepaths, we avoid a class of false positives where
|
|
286
|
+
// two different filepaths can get confused with each other.
|
|
287
|
+
fn check_for_invalid_characters(utf8_path: &str) -> anyhow::Result<()> {
|
|
288
|
+
// Null characters in paths should never happen, but they can result in a
|
|
289
|
+
// path getting silently truncated on Unix.
|
|
290
|
+
if utf8_path.contains('\0') {
|
|
291
|
+
bail!("Null character in path");
|
|
292
|
+
}
|
|
293
|
+
// Because we convert invalid UTF-8 sequences in paths to the Unicode
|
|
294
|
+
// replacement character, multiple different invalid paths can map to the
|
|
295
|
+
// same UTF-8 string.
|
|
296
|
+
if utf8_path.contains('�') {
|
|
297
|
+
bail!("Unicode replacement character in path");
|
|
298
|
+
}
|
|
299
|
+
// We normalize all Windows backslashes to forward slashes in our output,
|
|
300
|
+
// so the only natural way to get a backslash in a checkfile on Windows is
|
|
301
|
+
// to construct it on Unix and copy it over. (Or of course you could just
|
|
302
|
+
// doctor it by hand.) To avoid confusing this with a directory separator,
|
|
303
|
+
// we forbid backslashes entirely on Windows. Note that this check comes
|
|
304
|
+
// after unescaping has been done.
|
|
305
|
+
if cfg!(windows) && utf8_path.contains('\\') {
|
|
306
|
+
bail!("Backslash in path");
|
|
307
|
+
}
|
|
308
|
+
Ok(())
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
fn unescape(mut path: &str) -> anyhow::Result<String> {
|
|
312
|
+
let mut unescaped = String::with_capacity(2 * path.len());
|
|
313
|
+
while let Some(i) = path.find('\\') {
|
|
314
|
+
ensure!(i < path.len() - 1, "Invalid backslash escape");
|
|
315
|
+
unescaped.push_str(&path[..i]);
|
|
316
|
+
match path[i + 1..].chars().next().unwrap() {
|
|
317
|
+
// Anything other than a recognized escape sequence is an error.
|
|
318
|
+
'n' => unescaped.push_str("\n"),
|
|
319
|
+
'r' => unescaped.push_str("\r"),
|
|
320
|
+
'\\' => unescaped.push_str("\\"),
|
|
321
|
+
_ => bail!("Invalid backslash escape"),
|
|
322
|
+
}
|
|
323
|
+
path = &path[i + 2..];
|
|
324
|
+
}
|
|
325
|
+
unescaped.push_str(path);
|
|
326
|
+
Ok(unescaped)
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
#[derive(Debug)]
|
|
330
|
+
struct ParsedCheckLine {
|
|
331
|
+
file_string: String,
|
|
332
|
+
is_escaped: bool,
|
|
333
|
+
file_path: PathBuf,
|
|
334
|
+
expected_hash: blake3::Hash,
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
fn split_untagged_check_line(line_after_slash: &str) -> Option<(&str, &str)> {
|
|
338
|
+
// Of the form "<hash> <file>". The file might contain " ", so we need to split from the
|
|
339
|
+
// left.
|
|
340
|
+
line_after_slash.split_once(" ")
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
fn split_tagged_check_line(line_after_slash: &str) -> Option<(&str, &str)> {
|
|
344
|
+
// Of the form "BLAKE3 (<file>) = <hash>". The file might contain ") = ", so we need to split
|
|
345
|
+
// from the *right*.
|
|
346
|
+
let prefix = "BLAKE3 (";
|
|
347
|
+
if !line_after_slash.starts_with(prefix) {
|
|
348
|
+
return None;
|
|
349
|
+
}
|
|
350
|
+
line_after_slash[prefix.len()..].rsplit_once(") = ")
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
fn parse_check_line(mut line: &str) -> anyhow::Result<ParsedCheckLine> {
|
|
354
|
+
// Trim off the trailing newlines, if any.
|
|
355
|
+
line = line.trim_end_matches(['\r', '\n']);
|
|
356
|
+
// If there's a backslash at the front of the line, that means we need to
|
|
357
|
+
// unescape the path below. This matches the behavior of e.g. md5sum.
|
|
358
|
+
let Some(first) = line.chars().next() else {
|
|
359
|
+
bail!("Empty line");
|
|
360
|
+
};
|
|
361
|
+
let line_after_slash;
|
|
362
|
+
let is_escaped;
|
|
363
|
+
if first == '\\' {
|
|
364
|
+
is_escaped = true;
|
|
365
|
+
line_after_slash = &line[1..];
|
|
366
|
+
} else {
|
|
367
|
+
is_escaped = false;
|
|
368
|
+
line_after_slash = line;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
// Split the line. It might be "<hash> <file>" or "BLAKE3 (<file>) = <hash>". The latter comes
|
|
372
|
+
// from the --tag flag.
|
|
373
|
+
let hash_hex;
|
|
374
|
+
let file_str;
|
|
375
|
+
if let Some((left, right)) = split_untagged_check_line(line_after_slash) {
|
|
376
|
+
hash_hex = left;
|
|
377
|
+
file_str = right;
|
|
378
|
+
} else if let Some((left, right)) = split_tagged_check_line(line_after_slash) {
|
|
379
|
+
file_str = left;
|
|
380
|
+
hash_hex = right;
|
|
381
|
+
} else {
|
|
382
|
+
bail!("Invalid check line format");
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
// Decode the hex hash.
|
|
386
|
+
ensure!(hash_hex.len() == 2 * blake3::OUT_LEN, "Invalid hash length");
|
|
387
|
+
let mut hex_chars = hash_hex.chars();
|
|
388
|
+
let mut hash_bytes = [0; blake3::OUT_LEN];
|
|
389
|
+
for byte in &mut hash_bytes {
|
|
390
|
+
let high_char = hex_chars.next().unwrap();
|
|
391
|
+
let low_char = hex_chars.next().unwrap();
|
|
392
|
+
*byte = 16 * hex_half_byte(high_char)? + hex_half_byte(low_char)?;
|
|
393
|
+
}
|
|
394
|
+
let expected_hash: blake3::Hash = hash_bytes.into();
|
|
395
|
+
|
|
396
|
+
// Unescape and validate the filepath.
|
|
397
|
+
let file_path_string = if is_escaped {
|
|
398
|
+
unescape(file_str)?
|
|
399
|
+
} else {
|
|
400
|
+
file_str.to_string()
|
|
401
|
+
};
|
|
402
|
+
ensure!(!file_path_string.is_empty(), "empty file path");
|
|
403
|
+
check_for_invalid_characters(&file_path_string)?;
|
|
404
|
+
|
|
405
|
+
Ok(ParsedCheckLine {
|
|
406
|
+
file_string: file_str.to_string(),
|
|
407
|
+
is_escaped,
|
|
408
|
+
file_path: file_path_string.into(),
|
|
409
|
+
expected_hash,
|
|
410
|
+
})
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
fn hash_one_input(path: &Path, args: &Args) -> anyhow::Result<()> {
|
|
414
|
+
let output = hash_path(args, path)?;
|
|
415
|
+
if args.raw() {
|
|
416
|
+
write_raw_output(output, args)?;
|
|
417
|
+
return Ok(());
|
|
418
|
+
}
|
|
419
|
+
if args.no_names() {
|
|
420
|
+
write_hex_output(output, args)?;
|
|
421
|
+
println!();
|
|
422
|
+
return Ok(());
|
|
423
|
+
}
|
|
424
|
+
let FilepathString {
|
|
425
|
+
filepath_string,
|
|
426
|
+
is_escaped,
|
|
427
|
+
} = filepath_to_string(path);
|
|
428
|
+
if is_escaped {
|
|
429
|
+
print!("\\");
|
|
430
|
+
}
|
|
431
|
+
if args.tag() {
|
|
432
|
+
print!("BLAKE3 ({}) = ", filepath_string);
|
|
433
|
+
write_hex_output(output, args)?;
|
|
434
|
+
println!();
|
|
435
|
+
return Ok(());
|
|
436
|
+
}
|
|
437
|
+
write_hex_output(output, args)?;
|
|
438
|
+
println!(" {}", filepath_string);
|
|
439
|
+
Ok(())
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// Returns true for success. Having a boolean return value here, instead of
|
|
443
|
+
// passing down the files_failed reference, makes it less likely that we might
|
|
444
|
+
// forget to set it in some error condition.
|
|
445
|
+
fn check_one_line(line: &str, args: &Args) -> bool {
|
|
446
|
+
let parse_result = parse_check_line(&line);
|
|
447
|
+
let ParsedCheckLine {
|
|
448
|
+
file_string,
|
|
449
|
+
is_escaped,
|
|
450
|
+
file_path,
|
|
451
|
+
expected_hash,
|
|
452
|
+
} = match parse_result {
|
|
453
|
+
Ok(parsed) => parsed,
|
|
454
|
+
Err(e) => {
|
|
455
|
+
eprintln!("{}: {}", NAME, e);
|
|
456
|
+
return false;
|
|
457
|
+
}
|
|
458
|
+
};
|
|
459
|
+
let file_string = if is_escaped {
|
|
460
|
+
"\\".to_string() + &file_string
|
|
461
|
+
} else {
|
|
462
|
+
file_string
|
|
463
|
+
};
|
|
464
|
+
let found_hash: blake3::Hash;
|
|
465
|
+
match hash_path(args, &file_path) {
|
|
466
|
+
Ok(mut output) => {
|
|
467
|
+
let mut found_hash_bytes = [0; blake3::OUT_LEN];
|
|
468
|
+
output.fill(&mut found_hash_bytes);
|
|
469
|
+
found_hash = found_hash_bytes.into();
|
|
470
|
+
}
|
|
471
|
+
Err(e) => {
|
|
472
|
+
println!("{}: FAILED ({})", file_string, e);
|
|
473
|
+
return false;
|
|
474
|
+
}
|
|
475
|
+
};
|
|
476
|
+
// This is a constant-time comparison.
|
|
477
|
+
if expected_hash == found_hash {
|
|
478
|
+
if !args.quiet() {
|
|
479
|
+
println!("{}: OK", file_string);
|
|
480
|
+
}
|
|
481
|
+
true
|
|
482
|
+
} else {
|
|
483
|
+
println!("{}: FAILED", file_string);
|
|
484
|
+
false
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
fn check_one_checkfile(path: &Path, args: &Args, files_failed: &mut u64) -> anyhow::Result<()> {
|
|
489
|
+
let mut file;
|
|
490
|
+
let stdin;
|
|
491
|
+
let mut stdin_lock;
|
|
492
|
+
let mut bufreader: io::BufReader<&mut dyn Read>;
|
|
493
|
+
if path == Path::new("-") {
|
|
494
|
+
stdin = io::stdin();
|
|
495
|
+
stdin_lock = stdin.lock();
|
|
496
|
+
bufreader = io::BufReader::new(&mut stdin_lock);
|
|
497
|
+
} else {
|
|
498
|
+
file = File::open(path)?;
|
|
499
|
+
bufreader = io::BufReader::new(&mut file);
|
|
500
|
+
}
|
|
501
|
+
let mut line = String::new();
|
|
502
|
+
loop {
|
|
503
|
+
line.clear();
|
|
504
|
+
let n = bufreader.read_line(&mut line)?;
|
|
505
|
+
if n == 0 {
|
|
506
|
+
return Ok(());
|
|
507
|
+
}
|
|
508
|
+
// check_one_line() prints errors and turns them into a success=false
|
|
509
|
+
// return, so it doesn't return a Result.
|
|
510
|
+
let success = check_one_line(&line, args);
|
|
511
|
+
if !success {
|
|
512
|
+
// We use `files_failed > 0` to indicate a mismatch, so it's important for correctness
|
|
513
|
+
// that it's impossible for this counter to overflow.
|
|
514
|
+
*files_failed = files_failed.saturating_add(1);
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
fn main() -> anyhow::Result<()> {
|
|
520
|
+
let args = Args::parse()?;
|
|
521
|
+
let mut thread_pool_builder = rayon_core::ThreadPoolBuilder::new();
|
|
522
|
+
if let Some(num_threads) = args.num_threads() {
|
|
523
|
+
thread_pool_builder = thread_pool_builder.num_threads(num_threads);
|
|
524
|
+
}
|
|
525
|
+
let thread_pool = thread_pool_builder.build()?;
|
|
526
|
+
thread_pool.install(|| {
|
|
527
|
+
let mut files_failed = 0u64;
|
|
528
|
+
// Note that file_args automatically includes `-` if nothing is given.
|
|
529
|
+
for path in &args.file_args {
|
|
530
|
+
if args.check() {
|
|
531
|
+
check_one_checkfile(path, &args, &mut files_failed)?;
|
|
532
|
+
} else {
|
|
533
|
+
// Errors encountered in hashing are tolerated and printed to
|
|
534
|
+
// stderr. This allows e.g. `b3sum *` to print errors for
|
|
535
|
+
// non-files and keep going. However, if we encounter any
|
|
536
|
+
// errors we'll still return non-zero at the end.
|
|
537
|
+
let result = hash_one_input(path, &args);
|
|
538
|
+
if let Err(e) = result {
|
|
539
|
+
files_failed = files_failed.saturating_add(1);
|
|
540
|
+
eprintln!("{}: {}: {}", NAME, path.to_string_lossy(), e);
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
if args.check() && files_failed > 0 {
|
|
545
|
+
eprintln!(
|
|
546
|
+
"{}: WARNING: {} computed checksum{} did NOT match",
|
|
547
|
+
NAME,
|
|
548
|
+
files_failed,
|
|
549
|
+
if files_failed == 1 { "" } else { "s" },
|
|
550
|
+
);
|
|
551
|
+
}
|
|
552
|
+
std::process::exit(if files_failed > 0 { 1 } else { 0 });
|
|
553
|
+
})
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
#[cfg(test)]
|
|
557
|
+
mod test {
|
|
558
|
+
use clap::CommandFactory;
|
|
559
|
+
|
|
560
|
+
#[test]
|
|
561
|
+
fn test_args() {
|
|
562
|
+
crate::Inner::command().debug_assert();
|
|
563
|
+
}
|
|
564
|
+
}
|