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.
Files changed (462) hide show
  1. package/QuickCrypto.podspec +143 -7
  2. package/README.md +12 -6
  3. package/android/CMakeLists.txt +82 -21
  4. package/android/build.gradle +47 -4
  5. package/android/src/main/cpp/cpp-adapter.cpp +3 -10
  6. package/android/src/main/java/com/margelo/nitro/quickcrypto/QuickCryptoPackage.java +13 -10
  7. package/app.plugin.js +3 -0
  8. package/cpp/blake3/HybridBlake3.cpp +118 -0
  9. package/cpp/blake3/HybridBlake3.hpp +35 -0
  10. package/cpp/cipher/CCMCipher.cpp +199 -0
  11. package/cpp/cipher/CCMCipher.hpp +26 -0
  12. package/cpp/cipher/ChaCha20Cipher.cpp +97 -0
  13. package/cpp/cipher/ChaCha20Cipher.hpp +25 -0
  14. package/cpp/cipher/ChaCha20Poly1305Cipher.cpp +170 -0
  15. package/cpp/cipher/ChaCha20Poly1305Cipher.hpp +30 -0
  16. package/cpp/cipher/HybridCipher.cpp +322 -0
  17. package/cpp/cipher/HybridCipher.hpp +68 -0
  18. package/cpp/cipher/HybridCipherFactory.hpp +97 -0
  19. package/cpp/cipher/OCBCipher.cpp +55 -0
  20. package/cpp/cipher/OCBCipher.hpp +19 -0
  21. package/cpp/cipher/XSalsa20Cipher.cpp +61 -0
  22. package/cpp/cipher/XSalsa20Cipher.hpp +33 -0
  23. package/cpp/ec/HybridEcKeyPair.cpp +428 -0
  24. package/cpp/ec/HybridEcKeyPair.hpp +48 -0
  25. package/cpp/ed25519/HybridEdKeyPair.cpp +300 -0
  26. package/cpp/ed25519/HybridEdKeyPair.hpp +63 -0
  27. package/cpp/hash/HybridHash.cpp +185 -0
  28. package/cpp/hash/HybridHash.hpp +43 -0
  29. package/cpp/hmac/HybridHmac.cpp +95 -0
  30. package/cpp/hmac/HybridHmac.hpp +31 -0
  31. package/cpp/keys/HybridKeyObjectHandle.cpp +243 -0
  32. package/cpp/keys/HybridKeyObjectHandle.hpp +42 -0
  33. package/cpp/keys/KeyObjectData.cpp +226 -0
  34. package/cpp/keys/KeyObjectData.hpp +71 -0
  35. package/cpp/keys/node.h +5 -0
  36. package/cpp/pbkdf2/HybridPbkdf2.cpp +51 -0
  37. package/cpp/pbkdf2/HybridPbkdf2.hpp +24 -0
  38. package/cpp/random/HybridRandom.cpp +32 -18
  39. package/cpp/random/HybridRandom.hpp +18 -30
  40. package/cpp/rsa/HybridRsaKeyPair.cpp +154 -0
  41. package/cpp/rsa/HybridRsaKeyPair.hpp +43 -0
  42. package/cpp/utils/Macros.hpp +68 -0
  43. package/cpp/utils/Utils.hpp +53 -1
  44. package/deps/blake3/.cargo/config.toml +2 -0
  45. package/deps/blake3/.git-blame-ignore-revs +2 -0
  46. package/deps/blake3/.github/workflows/build_b3sum.py +38 -0
  47. package/deps/blake3/.github/workflows/ci.yml +491 -0
  48. package/deps/blake3/.github/workflows/tag.yml +43 -0
  49. package/deps/blake3/.github/workflows/upload_github_release_asset.py +73 -0
  50. package/deps/blake3/CONTRIBUTING.md +31 -0
  51. package/deps/blake3/Cargo.toml +135 -0
  52. package/deps/blake3/LICENSE_A2 +202 -0
  53. package/deps/blake3/LICENSE_A2LLVM +219 -0
  54. package/deps/blake3/LICENSE_CC0 +121 -0
  55. package/deps/blake3/README.md +229 -0
  56. package/deps/blake3/b3sum/Cargo.lock +513 -0
  57. package/deps/blake3/b3sum/Cargo.toml +26 -0
  58. package/deps/blake3/b3sum/README.md +72 -0
  59. package/deps/blake3/b3sum/src/main.rs +564 -0
  60. package/deps/blake3/b3sum/src/unit_tests.rs +235 -0
  61. package/deps/blake3/b3sum/tests/cli_tests.rs +680 -0
  62. package/deps/blake3/b3sum/what_does_check_do.md +176 -0
  63. package/deps/blake3/benches/bench.rs +623 -0
  64. package/deps/blake3/build.rs +389 -0
  65. package/deps/blake3/c/CMakeLists.txt +383 -0
  66. package/deps/blake3/c/CMakePresets.json +73 -0
  67. package/deps/blake3/c/Makefile.testing +82 -0
  68. package/deps/blake3/c/README.md +403 -0
  69. package/deps/blake3/c/blake3-config.cmake.in +14 -0
  70. package/deps/blake3/c/blake3.c +650 -0
  71. package/deps/blake3/c/blake3.h +86 -0
  72. package/deps/blake3/c/blake3_avx2.c +326 -0
  73. package/deps/blake3/c/blake3_avx2_x86-64_unix.S +1815 -0
  74. package/deps/blake3/c/blake3_avx2_x86-64_windows_gnu.S +1817 -0
  75. package/deps/blake3/c/blake3_avx2_x86-64_windows_msvc.asm +1828 -0
  76. package/deps/blake3/c/blake3_avx512.c +1388 -0
  77. package/deps/blake3/c/blake3_avx512_x86-64_unix.S +4824 -0
  78. package/deps/blake3/c/blake3_avx512_x86-64_windows_gnu.S +2615 -0
  79. package/deps/blake3/c/blake3_avx512_x86-64_windows_msvc.asm +2634 -0
  80. package/deps/blake3/c/blake3_c_rust_bindings/Cargo.toml +32 -0
  81. package/deps/blake3/c/blake3_c_rust_bindings/README.md +4 -0
  82. package/deps/blake3/c/blake3_c_rust_bindings/benches/bench.rs +477 -0
  83. package/deps/blake3/c/blake3_c_rust_bindings/build.rs +253 -0
  84. package/deps/blake3/c/blake3_c_rust_bindings/cross_test.sh +31 -0
  85. package/deps/blake3/c/blake3_c_rust_bindings/src/lib.rs +333 -0
  86. package/deps/blake3/c/blake3_c_rust_bindings/src/test.rs +696 -0
  87. package/deps/blake3/c/blake3_dispatch.c +332 -0
  88. package/deps/blake3/c/blake3_impl.h +333 -0
  89. package/deps/blake3/c/blake3_neon.c +366 -0
  90. package/deps/blake3/c/blake3_portable.c +160 -0
  91. package/deps/blake3/c/blake3_sse2.c +566 -0
  92. package/deps/blake3/c/blake3_sse2_x86-64_unix.S +2291 -0
  93. package/deps/blake3/c/blake3_sse2_x86-64_windows_gnu.S +2332 -0
  94. package/deps/blake3/c/blake3_sse2_x86-64_windows_msvc.asm +2350 -0
  95. package/deps/blake3/c/blake3_sse41.c +560 -0
  96. package/deps/blake3/c/blake3_sse41_x86-64_unix.S +2028 -0
  97. package/deps/blake3/c/blake3_sse41_x86-64_windows_gnu.S +2069 -0
  98. package/deps/blake3/c/blake3_sse41_x86-64_windows_msvc.asm +2089 -0
  99. package/deps/blake3/c/blake3_tbb.cpp +37 -0
  100. package/deps/blake3/c/dependencies/CMakeLists.txt +3 -0
  101. package/deps/blake3/c/dependencies/tbb/CMakeLists.txt +28 -0
  102. package/deps/blake3/c/example.c +36 -0
  103. package/deps/blake3/c/example_tbb.c +57 -0
  104. package/deps/blake3/c/libblake3.pc.in +12 -0
  105. package/deps/blake3/c/main.c +166 -0
  106. package/deps/blake3/c/test.py +97 -0
  107. package/deps/blake3/media/B3.svg +70 -0
  108. package/deps/blake3/media/BLAKE3.svg +85 -0
  109. package/deps/blake3/media/speed.svg +1474 -0
  110. package/deps/blake3/reference_impl/Cargo.toml +8 -0
  111. package/deps/blake3/reference_impl/README.md +14 -0
  112. package/deps/blake3/reference_impl/reference_impl.rs +374 -0
  113. package/deps/blake3/src/ffi_avx2.rs +65 -0
  114. package/deps/blake3/src/ffi_avx512.rs +169 -0
  115. package/deps/blake3/src/ffi_neon.rs +82 -0
  116. package/deps/blake3/src/ffi_sse2.rs +126 -0
  117. package/deps/blake3/src/ffi_sse41.rs +126 -0
  118. package/deps/blake3/src/guts.rs +60 -0
  119. package/deps/blake3/src/hazmat.rs +704 -0
  120. package/deps/blake3/src/io.rs +64 -0
  121. package/deps/blake3/src/join.rs +92 -0
  122. package/deps/blake3/src/lib.rs +1835 -0
  123. package/deps/blake3/src/platform.rs +587 -0
  124. package/deps/blake3/src/portable.rs +198 -0
  125. package/deps/blake3/src/rust_avx2.rs +474 -0
  126. package/deps/blake3/src/rust_sse2.rs +775 -0
  127. package/deps/blake3/src/rust_sse41.rs +766 -0
  128. package/deps/blake3/src/test.rs +1049 -0
  129. package/deps/blake3/src/traits.rs +227 -0
  130. package/deps/blake3/src/wasm32_simd.rs +794 -0
  131. package/deps/blake3/test_vectors/Cargo.toml +19 -0
  132. package/deps/blake3/test_vectors/cross_test.sh +25 -0
  133. package/deps/blake3/test_vectors/src/bin/generate.rs +4 -0
  134. package/deps/blake3/test_vectors/src/lib.rs +350 -0
  135. package/deps/blake3/test_vectors/test_vectors.json +217 -0
  136. package/deps/blake3/tools/compiler_version/Cargo.toml +7 -0
  137. package/deps/blake3/tools/compiler_version/build.rs +6 -0
  138. package/deps/blake3/tools/compiler_version/src/main.rs +27 -0
  139. package/deps/blake3/tools/instruction_set_support/Cargo.toml +6 -0
  140. package/deps/blake3/tools/instruction_set_support/src/main.rs +10 -0
  141. package/deps/blake3/tools/release.md +16 -0
  142. package/deps/fastpbkdf2/fastpbkdf2.c +356 -0
  143. package/deps/fastpbkdf2/fastpbkdf2.h +68 -0
  144. package/deps/ncrypto/ncrypto.cc +4679 -0
  145. package/deps/ncrypto/ncrypto.h +1625 -0
  146. package/lib/commonjs/blake3.js +98 -0
  147. package/lib/commonjs/blake3.js.map +1 -0
  148. package/lib/commonjs/cipher.js +180 -0
  149. package/lib/commonjs/cipher.js.map +1 -0
  150. package/lib/commonjs/ec.js +344 -0
  151. package/lib/commonjs/ec.js.map +1 -0
  152. package/lib/commonjs/ed.js +185 -0
  153. package/lib/commonjs/ed.js.map +1 -0
  154. package/lib/commonjs/expo-plugin/@types.js +2 -0
  155. package/lib/commonjs/expo-plugin/@types.js.map +1 -0
  156. package/lib/commonjs/expo-plugin/withRNQC.js +25 -0
  157. package/lib/commonjs/expo-plugin/withRNQC.js.map +1 -0
  158. package/lib/commonjs/expo-plugin/withSodiumAndroid.js +25 -0
  159. package/lib/commonjs/expo-plugin/withSodiumAndroid.js.map +1 -0
  160. package/lib/commonjs/expo-plugin/withSodiumIos.js +26 -0
  161. package/lib/commonjs/expo-plugin/withSodiumIos.js.map +1 -0
  162. package/lib/commonjs/expo-plugin/withXCode.js +51 -0
  163. package/lib/commonjs/expo-plugin/withXCode.js.map +1 -0
  164. package/lib/commonjs/hash.js +215 -0
  165. package/lib/commonjs/hash.js.map +1 -0
  166. package/lib/commonjs/hmac.js +109 -0
  167. package/lib/commonjs/hmac.js.map +1 -0
  168. package/lib/commonjs/index.js +152 -32
  169. package/lib/commonjs/index.js.map +1 -1
  170. package/lib/commonjs/keys/classes.js +250 -0
  171. package/lib/commonjs/keys/classes.js.map +1 -0
  172. package/lib/commonjs/keys/generateKeyPair.js +102 -0
  173. package/lib/commonjs/keys/generateKeyPair.js.map +1 -0
  174. package/lib/commonjs/keys/index.js +89 -0
  175. package/lib/commonjs/keys/index.js.map +1 -0
  176. package/lib/commonjs/keys/signVerify.js +41 -0
  177. package/lib/commonjs/keys/signVerify.js.map +1 -0
  178. package/lib/commonjs/keys/utils.js +123 -0
  179. package/lib/commonjs/keys/utils.js.map +1 -0
  180. package/lib/commonjs/pbkdf2.js +89 -0
  181. package/lib/commonjs/pbkdf2.js.map +1 -0
  182. package/lib/commonjs/random.js +9 -3
  183. package/lib/commonjs/random.js.map +1 -1
  184. package/lib/commonjs/rsa.js +129 -0
  185. package/lib/commonjs/rsa.js.map +1 -0
  186. package/lib/commonjs/specs/blake3.nitro.js +6 -0
  187. package/lib/commonjs/specs/blake3.nitro.js.map +1 -0
  188. package/lib/commonjs/specs/cipher.nitro.js +6 -0
  189. package/lib/commonjs/specs/cipher.nitro.js.map +1 -0
  190. package/lib/commonjs/specs/ecKeyPair.nitro.js +6 -0
  191. package/lib/commonjs/specs/ecKeyPair.nitro.js.map +1 -0
  192. package/lib/commonjs/specs/edKeyPair.nitro.js +6 -0
  193. package/lib/commonjs/specs/edKeyPair.nitro.js.map +1 -0
  194. package/lib/commonjs/specs/hash.nitro.js +6 -0
  195. package/lib/commonjs/specs/hash.nitro.js.map +1 -0
  196. package/lib/commonjs/specs/hmac.nitro.js +6 -0
  197. package/lib/commonjs/specs/hmac.nitro.js.map +1 -0
  198. package/lib/commonjs/specs/keyObjectHandle.nitro.js +6 -0
  199. package/lib/commonjs/specs/keyObjectHandle.nitro.js.map +1 -0
  200. package/lib/commonjs/specs/pbkdf2.nitro.js +6 -0
  201. package/lib/commonjs/specs/pbkdf2.nitro.js.map +1 -0
  202. package/lib/commonjs/specs/rsaKeyPair.nitro.js +6 -0
  203. package/lib/commonjs/specs/rsaKeyPair.nitro.js.map +1 -0
  204. package/lib/commonjs/subtle.js +365 -0
  205. package/lib/commonjs/subtle.js.map +1 -0
  206. package/lib/commonjs/utils/cipher.js +64 -0
  207. package/lib/commonjs/utils/cipher.js.map +1 -0
  208. package/lib/commonjs/utils/conversion.js +140 -6
  209. package/lib/commonjs/utils/conversion.js.map +1 -1
  210. package/lib/commonjs/utils/errors.js +14 -0
  211. package/lib/commonjs/utils/errors.js.map +1 -0
  212. package/lib/commonjs/utils/hashnames.js +91 -0
  213. package/lib/commonjs/utils/hashnames.js.map +1 -0
  214. package/lib/commonjs/utils/index.js +65 -5
  215. package/lib/commonjs/utils/index.js.map +1 -1
  216. package/lib/commonjs/utils/noble.js +82 -0
  217. package/lib/commonjs/utils/noble.js.map +1 -0
  218. package/lib/commonjs/utils/types.js +52 -0
  219. package/lib/commonjs/utils/types.js.map +1 -1
  220. package/lib/commonjs/utils/validation.js +98 -0
  221. package/lib/commonjs/utils/validation.js.map +1 -0
  222. package/lib/module/blake3.js +90 -0
  223. package/lib/module/blake3.js.map +1 -0
  224. package/lib/module/cipher.js +173 -0
  225. package/lib/module/cipher.js.map +1 -0
  226. package/lib/module/ec.js +336 -0
  227. package/lib/module/ec.js.map +1 -0
  228. package/lib/module/ed.js +178 -0
  229. package/lib/module/ed.js.map +1 -0
  230. package/lib/module/expo-plugin/@types.js +2 -0
  231. package/lib/module/expo-plugin/@types.js.map +1 -0
  232. package/lib/module/expo-plugin/withRNQC.js +21 -0
  233. package/lib/module/expo-plugin/withRNQC.js.map +1 -0
  234. package/lib/module/expo-plugin/withSodiumAndroid.js +20 -0
  235. package/lib/module/expo-plugin/withSodiumAndroid.js.map +1 -0
  236. package/lib/module/expo-plugin/withSodiumIos.js +20 -0
  237. package/lib/module/expo-plugin/withSodiumIos.js.map +1 -0
  238. package/lib/module/expo-plugin/withXCode.js +46 -0
  239. package/lib/module/expo-plugin/withXCode.js.map +1 -0
  240. package/lib/module/hash.js +207 -0
  241. package/lib/module/hash.js.map +1 -0
  242. package/lib/module/hmac.js +104 -0
  243. package/lib/module/hmac.js.map +1 -0
  244. package/lib/module/index.js +33 -29
  245. package/lib/module/index.js.map +1 -1
  246. package/lib/module/keys/classes.js +241 -0
  247. package/lib/module/keys/classes.js.map +1 -0
  248. package/lib/module/keys/generateKeyPair.js +96 -0
  249. package/lib/module/keys/generateKeyPair.js.map +1 -0
  250. package/lib/module/keys/index.js +32 -0
  251. package/lib/module/keys/index.js.map +1 -0
  252. package/lib/module/keys/signVerify.js +41 -0
  253. package/lib/module/keys/signVerify.js.map +1 -0
  254. package/lib/module/keys/utils.js +114 -0
  255. package/lib/module/keys/utils.js.map +1 -0
  256. package/lib/module/pbkdf2.js +83 -0
  257. package/lib/module/pbkdf2.js.map +1 -0
  258. package/lib/module/random.js +7 -1
  259. package/lib/module/random.js.map +1 -1
  260. package/lib/module/rsa.js +123 -0
  261. package/lib/module/rsa.js.map +1 -0
  262. package/lib/module/specs/blake3.nitro.js +4 -0
  263. package/lib/module/specs/blake3.nitro.js.map +1 -0
  264. package/lib/module/specs/cipher.nitro.js +4 -0
  265. package/lib/module/specs/cipher.nitro.js.map +1 -0
  266. package/lib/module/specs/ecKeyPair.nitro.js +4 -0
  267. package/lib/module/specs/ecKeyPair.nitro.js.map +1 -0
  268. package/lib/module/specs/edKeyPair.nitro.js +4 -0
  269. package/lib/module/specs/edKeyPair.nitro.js.map +1 -0
  270. package/lib/module/specs/hash.nitro.js +4 -0
  271. package/lib/module/specs/hash.nitro.js.map +1 -0
  272. package/lib/module/specs/hmac.nitro.js +4 -0
  273. package/lib/module/specs/hmac.nitro.js.map +1 -0
  274. package/lib/module/specs/keyObjectHandle.nitro.js +4 -0
  275. package/lib/module/specs/keyObjectHandle.nitro.js.map +1 -0
  276. package/lib/module/specs/pbkdf2.nitro.js +4 -0
  277. package/lib/module/specs/pbkdf2.nitro.js.map +1 -0
  278. package/lib/module/specs/rsaKeyPair.nitro.js +4 -0
  279. package/lib/module/specs/rsaKeyPair.nitro.js.map +1 -0
  280. package/lib/module/subtle.js +360 -0
  281. package/lib/module/subtle.js.map +1 -0
  282. package/lib/module/utils/cipher.js +56 -0
  283. package/lib/module/utils/cipher.js.map +1 -0
  284. package/lib/module/utils/conversion.js +120 -8
  285. package/lib/module/utils/conversion.js.map +1 -1
  286. package/lib/module/utils/errors.js +10 -0
  287. package/lib/module/utils/errors.js.map +1 -0
  288. package/lib/module/utils/hashnames.js +89 -0
  289. package/lib/module/utils/hashnames.js.map +1 -0
  290. package/lib/module/utils/index.js +6 -5
  291. package/lib/module/utils/index.js.map +1 -1
  292. package/lib/module/utils/noble.js +76 -0
  293. package/lib/module/utils/noble.js.map +1 -0
  294. package/lib/module/utils/types.js +53 -0
  295. package/lib/module/utils/types.js.map +1 -1
  296. package/lib/module/utils/validation.js +87 -0
  297. package/lib/module/utils/validation.js.map +1 -0
  298. package/lib/tsconfig.tsbuildinfo +1 -1
  299. package/lib/typescript/blake3.d.ts +33 -0
  300. package/lib/typescript/blake3.d.ts.map +1 -0
  301. package/lib/typescript/cipher.d.ts +60 -0
  302. package/lib/typescript/cipher.d.ts.map +1 -0
  303. package/lib/typescript/ec.d.ts +13 -0
  304. package/lib/typescript/ec.d.ts.map +1 -0
  305. package/lib/typescript/ed.d.ts +43 -0
  306. package/lib/typescript/ed.d.ts.map +1 -0
  307. package/lib/typescript/expo-plugin/@types.d.ts +8 -0
  308. package/lib/typescript/expo-plugin/@types.d.ts.map +1 -0
  309. package/lib/typescript/expo-plugin/withRNQC.d.ts +4 -0
  310. package/lib/typescript/expo-plugin/withRNQC.d.ts.map +1 -0
  311. package/lib/typescript/expo-plugin/withSodiumAndroid.d.ts +4 -0
  312. package/lib/typescript/expo-plugin/withSodiumAndroid.d.ts.map +1 -0
  313. package/lib/typescript/expo-plugin/withSodiumIos.d.ts +4 -0
  314. package/lib/typescript/expo-plugin/withSodiumIos.d.ts.map +1 -0
  315. package/lib/typescript/expo-plugin/withXCode.d.ts +9 -0
  316. package/lib/typescript/expo-plugin/withXCode.d.ts.map +1 -0
  317. package/lib/typescript/hash.d.ts +122 -0
  318. package/lib/typescript/hash.d.ts.map +1 -0
  319. package/lib/typescript/hmac.d.ts +66 -0
  320. package/lib/typescript/hmac.d.ts.map +1 -0
  321. package/lib/typescript/index.d.ts +110 -9
  322. package/lib/typescript/index.d.ts.map +1 -1
  323. package/lib/typescript/keys/classes.d.ts +79 -0
  324. package/lib/typescript/keys/classes.d.ts.map +1 -0
  325. package/lib/typescript/keys/generateKeyPair.d.ts +6 -0
  326. package/lib/typescript/keys/generateKeyPair.d.ts.map +1 -0
  327. package/lib/typescript/keys/index.d.ts +7 -0
  328. package/lib/typescript/keys/index.d.ts.map +1 -0
  329. package/lib/typescript/keys/signVerify.d.ts +1 -0
  330. package/lib/typescript/keys/signVerify.d.ts.map +1 -0
  331. package/lib/typescript/keys/utils.d.ts +34 -0
  332. package/lib/typescript/keys/utils.d.ts.map +1 -0
  333. package/lib/typescript/pbkdf2.d.ts +12 -0
  334. package/lib/typescript/pbkdf2.d.ts.map +1 -0
  335. package/lib/typescript/random.d.ts +11 -5
  336. package/lib/typescript/random.d.ts.map +1 -1
  337. package/lib/typescript/rsa.d.ts +10 -0
  338. package/lib/typescript/rsa.d.ts.map +1 -0
  339. package/lib/typescript/specs/blake3.nitro.d.ts +15 -0
  340. package/lib/typescript/specs/blake3.nitro.d.ts.map +1 -0
  341. package/lib/typescript/specs/cipher.nitro.d.ts +29 -0
  342. package/lib/typescript/specs/cipher.nitro.d.ts.map +1 -0
  343. package/lib/typescript/specs/ecKeyPair.nitro.d.ts +20 -0
  344. package/lib/typescript/specs/ecKeyPair.nitro.d.ts.map +1 -0
  345. package/lib/typescript/specs/edKeyPair.nitro.d.ts +17 -0
  346. package/lib/typescript/specs/edKeyPair.nitro.d.ts.map +1 -0
  347. package/lib/typescript/specs/hash.nitro.d.ts +13 -0
  348. package/lib/typescript/specs/hash.nitro.d.ts.map +1 -0
  349. package/lib/typescript/specs/hmac.nitro.d.ts +10 -0
  350. package/lib/typescript/specs/hmac.nitro.d.ts.map +1 -0
  351. package/lib/typescript/specs/keyObjectHandle.nitro.d.ts +14 -0
  352. package/lib/typescript/specs/keyObjectHandle.nitro.d.ts.map +1 -0
  353. package/lib/typescript/specs/pbkdf2.nitro.d.ts +9 -0
  354. package/lib/typescript/specs/pbkdf2.nitro.d.ts.map +1 -0
  355. package/lib/typescript/specs/rsaKeyPair.nitro.d.ts +20 -0
  356. package/lib/typescript/specs/rsaKeyPair.nitro.d.ts.map +1 -0
  357. package/lib/typescript/subtle.d.ts +17 -0
  358. package/lib/typescript/subtle.d.ts.map +1 -0
  359. package/lib/typescript/utils/cipher.d.ts +7 -0
  360. package/lib/typescript/utils/cipher.d.ts.map +1 -0
  361. package/lib/typescript/utils/conversion.d.ts +24 -2
  362. package/lib/typescript/utils/conversion.d.ts.map +1 -1
  363. package/lib/typescript/utils/errors.d.ts +7 -0
  364. package/lib/typescript/utils/errors.d.ts.map +1 -0
  365. package/lib/typescript/utils/hashnames.d.ts +13 -0
  366. package/lib/typescript/utils/hashnames.d.ts.map +1 -0
  367. package/lib/typescript/utils/index.d.ts +6 -5
  368. package/lib/typescript/utils/index.d.ts.map +1 -1
  369. package/lib/typescript/utils/noble.d.ts +19 -0
  370. package/lib/typescript/utils/noble.d.ts.map +1 -0
  371. package/lib/typescript/utils/types.d.ts +252 -2
  372. package/lib/typescript/utils/types.d.ts.map +1 -1
  373. package/lib/typescript/utils/validation.d.ts +13 -0
  374. package/lib/typescript/utils/validation.d.ts.map +1 -0
  375. package/nitrogen/generated/.gitattributes +1 -0
  376. package/nitrogen/generated/android/QuickCrypto+autolinking.cmake +47 -4
  377. package/nitrogen/generated/android/QuickCrypto+autolinking.gradle +4 -3
  378. package/nitrogen/generated/android/QuickCryptoOnLoad.cpp +144 -0
  379. package/nitrogen/generated/android/QuickCryptoOnLoad.hpp +25 -0
  380. package/nitrogen/generated/android/kotlin/com/margelo/nitro/crypto/QuickCryptoOnLoad.kt +35 -0
  381. package/nitrogen/generated/ios/QuickCrypto+autolinking.rb +11 -8
  382. package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.cpp +11 -3
  383. package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.hpp +5 -3
  384. package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Umbrella.hpp +16 -7
  385. package/nitrogen/generated/ios/QuickCryptoAutolinking.mm +135 -0
  386. package/nitrogen/generated/ios/QuickCryptoAutolinking.swift +12 -0
  387. package/nitrogen/generated/shared/c++/CFRGKeyPairType.hpp +84 -0
  388. package/nitrogen/generated/shared/c++/CipherArgs.hpp +86 -0
  389. package/nitrogen/generated/shared/c++/HybridBlake3Spec.cpp +28 -0
  390. package/nitrogen/generated/shared/c++/HybridBlake3Spec.hpp +76 -0
  391. package/nitrogen/generated/shared/c++/HybridCipherFactorySpec.cpp +21 -0
  392. package/nitrogen/generated/shared/c++/HybridCipherFactorySpec.hpp +67 -0
  393. package/nitrogen/generated/shared/c++/HybridCipherSpec.cpp +28 -0
  394. package/nitrogen/generated/shared/c++/HybridCipherSpec.hpp +76 -0
  395. package/nitrogen/generated/shared/c++/HybridEcKeyPairSpec.cpp +29 -0
  396. package/nitrogen/generated/shared/c++/HybridEcKeyPairSpec.hpp +77 -0
  397. package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.cpp +30 -0
  398. package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.hpp +75 -0
  399. package/nitrogen/generated/shared/c++/HybridHashSpec.cpp +26 -0
  400. package/nitrogen/generated/shared/c++/HybridHashSpec.hpp +75 -0
  401. package/nitrogen/generated/shared/c++/HybridHmacSpec.cpp +23 -0
  402. package/nitrogen/generated/shared/c++/HybridHmacSpec.hpp +66 -0
  403. package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.cpp +26 -0
  404. package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.hpp +92 -0
  405. package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.cpp +22 -0
  406. package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.hpp +66 -0
  407. package/nitrogen/generated/shared/c++/HybridRandomSpec.cpp +2 -3
  408. package/nitrogen/generated/shared/c++/HybridRandomSpec.hpp +9 -6
  409. package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.cpp +29 -0
  410. package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.hpp +77 -0
  411. package/nitrogen/generated/shared/c++/JWK.hpp +161 -0
  412. package/nitrogen/generated/shared/c++/JWKkty.hpp +84 -0
  413. package/nitrogen/generated/shared/c++/JWKuse.hpp +76 -0
  414. package/nitrogen/generated/shared/c++/KFormatType.hpp +63 -0
  415. package/nitrogen/generated/shared/c++/KeyDetail.hpp +92 -0
  416. package/nitrogen/generated/shared/c++/KeyEncoding.hpp +64 -0
  417. package/nitrogen/generated/shared/c++/KeyObject.hpp +67 -0
  418. package/nitrogen/generated/shared/c++/KeyType.hpp +63 -0
  419. package/nitrogen/generated/shared/c++/KeyUsage.hpp +116 -0
  420. package/nitrogen/generated/shared/c++/NamedCurve.hpp +80 -0
  421. package/package.json +66 -39
  422. package/src/blake3.ts +123 -0
  423. package/src/cipher.ts +335 -0
  424. package/src/ec.ts +432 -0
  425. package/src/ed.ts +256 -0
  426. package/src/expo-plugin/@types.ts +7 -0
  427. package/src/expo-plugin/withRNQC.ts +23 -0
  428. package/src/expo-plugin/withSodiumAndroid.ts +24 -0
  429. package/src/expo-plugin/withSodiumIos.ts +30 -0
  430. package/src/expo-plugin/withXCode.ts +55 -0
  431. package/src/hash.ts +274 -0
  432. package/src/hmac.ts +135 -0
  433. package/src/index.ts +32 -29
  434. package/src/keys/classes.ts +317 -0
  435. package/src/keys/generateKeyPair.ts +145 -0
  436. package/src/keys/index.ts +52 -0
  437. package/src/keys/signVerify.ts +39 -0
  438. package/src/keys/utils.ts +190 -0
  439. package/src/pbkdf2.ts +154 -0
  440. package/src/random.ts +26 -23
  441. package/src/rsa.ts +176 -0
  442. package/src/specs/blake3.nitro.ts +12 -0
  443. package/src/specs/cipher.nitro.ts +25 -0
  444. package/src/specs/ecKeyPair.nitro.ts +38 -0
  445. package/src/specs/edKeyPair.nitro.ts +43 -0
  446. package/src/specs/hash.nitro.ts +10 -0
  447. package/src/specs/hmac.nitro.ts +7 -0
  448. package/src/specs/keyObjectHandle.nitro.ts +31 -0
  449. package/src/specs/pbkdf2.nitro.ts +18 -0
  450. package/src/specs/random.nitro.ts +2 -2
  451. package/src/specs/rsaKeyPair.nitro.ts +33 -0
  452. package/src/subtle.ts +614 -0
  453. package/src/utils/cipher.ts +60 -0
  454. package/src/utils/conversion.ts +143 -9
  455. package/src/utils/errors.ts +15 -0
  456. package/src/utils/hashnames.ts +98 -0
  457. package/src/utils/index.ts +6 -6
  458. package/src/utils/noble.ts +85 -0
  459. package/src/utils/types.ts +423 -3
  460. package/src/utils/validation.ts +130 -0
  461. package/ios/QuickCryptoOnLoad.mm +0 -19
  462. package/lib/module/package.json +0 -1
@@ -0,0 +1,650 @@
1
+ #include <assert.h>
2
+ #include <stdbool.h>
3
+ #include <string.h>
4
+
5
+ #include "blake3.h"
6
+ #include "blake3_impl.h"
7
+
8
+ const char *blake3_version(void) { return BLAKE3_VERSION_STRING; }
9
+
10
+ INLINE void chunk_state_init(blake3_chunk_state *self, const uint32_t key[8],
11
+ uint8_t flags) {
12
+ memcpy(self->cv, key, BLAKE3_KEY_LEN);
13
+ self->chunk_counter = 0;
14
+ memset(self->buf, 0, BLAKE3_BLOCK_LEN);
15
+ self->buf_len = 0;
16
+ self->blocks_compressed = 0;
17
+ self->flags = flags;
18
+ }
19
+
20
+ INLINE void chunk_state_reset(blake3_chunk_state *self, const uint32_t key[8],
21
+ uint64_t chunk_counter) {
22
+ memcpy(self->cv, key, BLAKE3_KEY_LEN);
23
+ self->chunk_counter = chunk_counter;
24
+ self->blocks_compressed = 0;
25
+ memset(self->buf, 0, BLAKE3_BLOCK_LEN);
26
+ self->buf_len = 0;
27
+ }
28
+
29
+ INLINE size_t chunk_state_len(const blake3_chunk_state *self) {
30
+ return (BLAKE3_BLOCK_LEN * (size_t)self->blocks_compressed) +
31
+ ((size_t)self->buf_len);
32
+ }
33
+
34
+ INLINE size_t chunk_state_fill_buf(blake3_chunk_state *self,
35
+ const uint8_t *input, size_t input_len) {
36
+ size_t take = BLAKE3_BLOCK_LEN - ((size_t)self->buf_len);
37
+ if (take > input_len) {
38
+ take = input_len;
39
+ }
40
+ uint8_t *dest = self->buf + ((size_t)self->buf_len);
41
+ memcpy(dest, input, take);
42
+ self->buf_len += (uint8_t)take;
43
+ return take;
44
+ }
45
+
46
+ INLINE uint8_t chunk_state_maybe_start_flag(const blake3_chunk_state *self) {
47
+ if (self->blocks_compressed == 0) {
48
+ return CHUNK_START;
49
+ } else {
50
+ return 0;
51
+ }
52
+ }
53
+
54
+ typedef struct {
55
+ uint32_t input_cv[8];
56
+ uint64_t counter;
57
+ uint8_t block[BLAKE3_BLOCK_LEN];
58
+ uint8_t block_len;
59
+ uint8_t flags;
60
+ } output_t;
61
+
62
+ INLINE output_t make_output(const uint32_t input_cv[8],
63
+ const uint8_t block[BLAKE3_BLOCK_LEN],
64
+ uint8_t block_len, uint64_t counter,
65
+ uint8_t flags) {
66
+ output_t ret;
67
+ memcpy(ret.input_cv, input_cv, 32);
68
+ memcpy(ret.block, block, BLAKE3_BLOCK_LEN);
69
+ ret.block_len = block_len;
70
+ ret.counter = counter;
71
+ ret.flags = flags;
72
+ return ret;
73
+ }
74
+
75
+ // Chaining values within a given chunk (specifically the compress_in_place
76
+ // interface) are represented as words. This avoids unnecessary bytes<->words
77
+ // conversion overhead in the portable implementation. However, the hash_many
78
+ // interface handles both user input and parent node blocks, so it accepts
79
+ // bytes. For that reason, chaining values in the CV stack are represented as
80
+ // bytes.
81
+ INLINE void output_chaining_value(const output_t *self, uint8_t cv[32]) {
82
+ uint32_t cv_words[8];
83
+ memcpy(cv_words, self->input_cv, 32);
84
+ blake3_compress_in_place(cv_words, self->block, self->block_len,
85
+ self->counter, self->flags);
86
+ store_cv_words(cv, cv_words);
87
+ }
88
+
89
+ INLINE void output_root_bytes(const output_t *self, uint64_t seek, uint8_t *out,
90
+ size_t out_len) {
91
+ if (out_len == 0) {
92
+ return;
93
+ }
94
+ uint64_t output_block_counter = seek / 64;
95
+ size_t offset_within_block = seek % 64;
96
+ uint8_t wide_buf[64];
97
+ if(offset_within_block) {
98
+ blake3_compress_xof(self->input_cv, self->block, self->block_len, output_block_counter, self->flags | ROOT, wide_buf);
99
+ const size_t available_bytes = 64 - offset_within_block;
100
+ const size_t bytes = out_len > available_bytes ? available_bytes : out_len;
101
+ memcpy(out, wide_buf + offset_within_block, bytes);
102
+ out += bytes;
103
+ out_len -= bytes;
104
+ output_block_counter += 1;
105
+ }
106
+ if(out_len / 64) {
107
+ blake3_xof_many(self->input_cv, self->block, self->block_len, output_block_counter, self->flags | ROOT, out, out_len / 64);
108
+ }
109
+ output_block_counter += out_len / 64;
110
+ out += out_len & -64;
111
+ out_len -= out_len & -64;
112
+ if(out_len) {
113
+ blake3_compress_xof(self->input_cv, self->block, self->block_len, output_block_counter, self->flags | ROOT, wide_buf);
114
+ memcpy(out, wide_buf, out_len);
115
+ }
116
+ }
117
+
118
+ INLINE void chunk_state_update(blake3_chunk_state *self, const uint8_t *input,
119
+ size_t input_len) {
120
+ if (self->buf_len > 0) {
121
+ size_t take = chunk_state_fill_buf(self, input, input_len);
122
+ input += take;
123
+ input_len -= take;
124
+ if (input_len > 0) {
125
+ blake3_compress_in_place(
126
+ self->cv, self->buf, BLAKE3_BLOCK_LEN, self->chunk_counter,
127
+ self->flags | chunk_state_maybe_start_flag(self));
128
+ self->blocks_compressed += 1;
129
+ self->buf_len = 0;
130
+ memset(self->buf, 0, BLAKE3_BLOCK_LEN);
131
+ }
132
+ }
133
+
134
+ while (input_len > BLAKE3_BLOCK_LEN) {
135
+ blake3_compress_in_place(self->cv, input, BLAKE3_BLOCK_LEN,
136
+ self->chunk_counter,
137
+ self->flags | chunk_state_maybe_start_flag(self));
138
+ self->blocks_compressed += 1;
139
+ input += BLAKE3_BLOCK_LEN;
140
+ input_len -= BLAKE3_BLOCK_LEN;
141
+ }
142
+
143
+ chunk_state_fill_buf(self, input, input_len);
144
+ }
145
+
146
+ INLINE output_t chunk_state_output(const blake3_chunk_state *self) {
147
+ uint8_t block_flags =
148
+ self->flags | chunk_state_maybe_start_flag(self) | CHUNK_END;
149
+ return make_output(self->cv, self->buf, self->buf_len, self->chunk_counter,
150
+ block_flags);
151
+ }
152
+
153
+ INLINE output_t parent_output(const uint8_t block[BLAKE3_BLOCK_LEN],
154
+ const uint32_t key[8], uint8_t flags) {
155
+ return make_output(key, block, BLAKE3_BLOCK_LEN, 0, flags | PARENT);
156
+ }
157
+
158
+ // Given some input larger than one chunk, return the number of bytes that
159
+ // should go in the left subtree. This is the largest power-of-2 number of
160
+ // chunks that leaves at least 1 byte for the right subtree.
161
+ INLINE size_t left_subtree_len(size_t input_len) {
162
+ // Subtract 1 to reserve at least one byte for the right side. input_len
163
+ // should always be greater than BLAKE3_CHUNK_LEN.
164
+ size_t full_chunks = (input_len - 1) / BLAKE3_CHUNK_LEN;
165
+ return round_down_to_power_of_2(full_chunks) * BLAKE3_CHUNK_LEN;
166
+ }
167
+
168
+ // Use SIMD parallelism to hash up to MAX_SIMD_DEGREE chunks at the same time
169
+ // on a single thread. Write out the chunk chaining values and return the
170
+ // number of chunks hashed. These chunks are never the root and never empty;
171
+ // those cases use a different codepath.
172
+ INLINE size_t compress_chunks_parallel(const uint8_t *input, size_t input_len,
173
+ const uint32_t key[8],
174
+ uint64_t chunk_counter, uint8_t flags,
175
+ uint8_t *out) {
176
+ #if defined(BLAKE3_TESTING)
177
+ assert(0 < input_len);
178
+ assert(input_len <= MAX_SIMD_DEGREE * BLAKE3_CHUNK_LEN);
179
+ #endif
180
+
181
+ const uint8_t *chunks_array[MAX_SIMD_DEGREE];
182
+ size_t input_position = 0;
183
+ size_t chunks_array_len = 0;
184
+ while (input_len - input_position >= BLAKE3_CHUNK_LEN) {
185
+ chunks_array[chunks_array_len] = &input[input_position];
186
+ input_position += BLAKE3_CHUNK_LEN;
187
+ chunks_array_len += 1;
188
+ }
189
+
190
+ blake3_hash_many(chunks_array, chunks_array_len,
191
+ BLAKE3_CHUNK_LEN / BLAKE3_BLOCK_LEN, key, chunk_counter,
192
+ true, flags, CHUNK_START, CHUNK_END, out);
193
+
194
+ // Hash the remaining partial chunk, if there is one. Note that the empty
195
+ // chunk (meaning the empty message) is a different codepath.
196
+ if (input_len > input_position) {
197
+ uint64_t counter = chunk_counter + (uint64_t)chunks_array_len;
198
+ blake3_chunk_state chunk_state;
199
+ chunk_state_init(&chunk_state, key, flags);
200
+ chunk_state.chunk_counter = counter;
201
+ chunk_state_update(&chunk_state, &input[input_position],
202
+ input_len - input_position);
203
+ output_t output = chunk_state_output(&chunk_state);
204
+ output_chaining_value(&output, &out[chunks_array_len * BLAKE3_OUT_LEN]);
205
+ return chunks_array_len + 1;
206
+ } else {
207
+ return chunks_array_len;
208
+ }
209
+ }
210
+
211
+ // Use SIMD parallelism to hash up to MAX_SIMD_DEGREE parents at the same time
212
+ // on a single thread. Write out the parent chaining values and return the
213
+ // number of parents hashed. (If there's an odd input chaining value left over,
214
+ // return it as an additional output.) These parents are never the root and
215
+ // never empty; those cases use a different codepath.
216
+ INLINE size_t compress_parents_parallel(const uint8_t *child_chaining_values,
217
+ size_t num_chaining_values,
218
+ const uint32_t key[8], uint8_t flags,
219
+ uint8_t *out) {
220
+ #if defined(BLAKE3_TESTING)
221
+ assert(2 <= num_chaining_values);
222
+ assert(num_chaining_values <= 2 * MAX_SIMD_DEGREE_OR_2);
223
+ #endif
224
+
225
+ const uint8_t *parents_array[MAX_SIMD_DEGREE_OR_2];
226
+ size_t parents_array_len = 0;
227
+ while (num_chaining_values - (2 * parents_array_len) >= 2) {
228
+ parents_array[parents_array_len] =
229
+ &child_chaining_values[2 * parents_array_len * BLAKE3_OUT_LEN];
230
+ parents_array_len += 1;
231
+ }
232
+
233
+ blake3_hash_many(parents_array, parents_array_len, 1, key,
234
+ 0, // Parents always use counter 0.
235
+ false, flags | PARENT,
236
+ 0, // Parents have no start flags.
237
+ 0, // Parents have no end flags.
238
+ out);
239
+
240
+ // If there's an odd child left over, it becomes an output.
241
+ if (num_chaining_values > 2 * parents_array_len) {
242
+ memcpy(&out[parents_array_len * BLAKE3_OUT_LEN],
243
+ &child_chaining_values[2 * parents_array_len * BLAKE3_OUT_LEN],
244
+ BLAKE3_OUT_LEN);
245
+ return parents_array_len + 1;
246
+ } else {
247
+ return parents_array_len;
248
+ }
249
+ }
250
+
251
+ // The wide helper function returns (writes out) an array of chaining values
252
+ // and returns the length of that array. The number of chaining values returned
253
+ // is the dynamically detected SIMD degree, at most MAX_SIMD_DEGREE. Or fewer,
254
+ // if the input is shorter than that many chunks. The reason for maintaining a
255
+ // wide array of chaining values going back up the tree, is to allow the
256
+ // implementation to hash as many parents in parallel as possible.
257
+ //
258
+ // As a special case when the SIMD degree is 1, this function will still return
259
+ // at least 2 outputs. This guarantees that this function doesn't perform the
260
+ // root compression. (If it did, it would use the wrong flags, and also we
261
+ // wouldn't be able to implement extendable output.) Note that this function is
262
+ // not used when the whole input is only 1 chunk long; that's a different
263
+ // codepath.
264
+ //
265
+ // Why not just have the caller split the input on the first update(), instead
266
+ // of implementing this special rule? Because we don't want to limit SIMD or
267
+ // multi-threading parallelism for that update().
268
+ size_t blake3_compress_subtree_wide(const uint8_t *input, size_t input_len,
269
+ const uint32_t key[8],
270
+ uint64_t chunk_counter, uint8_t flags,
271
+ uint8_t *out, bool use_tbb) {
272
+ // Note that the single chunk case does *not* bump the SIMD degree up to 2
273
+ // when it is 1. If this implementation adds multi-threading in the future,
274
+ // this gives us the option of multi-threading even the 2-chunk case, which
275
+ // can help performance on smaller platforms.
276
+ if (input_len <= blake3_simd_degree() * BLAKE3_CHUNK_LEN) {
277
+ return compress_chunks_parallel(input, input_len, key, chunk_counter, flags,
278
+ out);
279
+ }
280
+
281
+ // With more than simd_degree chunks, we need to recurse. Start by dividing
282
+ // the input into left and right subtrees. (Note that this is only optimal
283
+ // as long as the SIMD degree is a power of 2. If we ever get a SIMD degree
284
+ // of 3 or something, we'll need a more complicated strategy.)
285
+ size_t left_input_len = left_subtree_len(input_len);
286
+ size_t right_input_len = input_len - left_input_len;
287
+ const uint8_t *right_input = &input[left_input_len];
288
+ uint64_t right_chunk_counter =
289
+ chunk_counter + (uint64_t)(left_input_len / BLAKE3_CHUNK_LEN);
290
+
291
+ // Make space for the child outputs. Here we use MAX_SIMD_DEGREE_OR_2 to
292
+ // account for the special case of returning 2 outputs when the SIMD degree
293
+ // is 1.
294
+ uint8_t cv_array[2 * MAX_SIMD_DEGREE_OR_2 * BLAKE3_OUT_LEN];
295
+ size_t degree = blake3_simd_degree();
296
+ if (left_input_len > BLAKE3_CHUNK_LEN && degree == 1) {
297
+ // The special case: We always use a degree of at least two, to make
298
+ // sure there are two outputs. Except, as noted above, at the chunk
299
+ // level, where we allow degree=1. (Note that the 1-chunk-input case is
300
+ // a different codepath.)
301
+ degree = 2;
302
+ }
303
+ uint8_t *right_cvs = &cv_array[degree * BLAKE3_OUT_LEN];
304
+
305
+ // Recurse!
306
+ size_t left_n = -1;
307
+ size_t right_n = -1;
308
+
309
+ #if defined(BLAKE3_USE_TBB)
310
+ blake3_compress_subtree_wide_join_tbb(
311
+ key, flags, use_tbb,
312
+ // left-hand side
313
+ input, left_input_len, chunk_counter, cv_array, &left_n,
314
+ // right-hand side
315
+ right_input, right_input_len, right_chunk_counter, right_cvs, &right_n);
316
+ #else
317
+ left_n = blake3_compress_subtree_wide(
318
+ input, left_input_len, key, chunk_counter, flags, cv_array, use_tbb);
319
+ right_n = blake3_compress_subtree_wide(right_input, right_input_len, key,
320
+ right_chunk_counter, flags, right_cvs,
321
+ use_tbb);
322
+ #endif // BLAKE3_USE_TBB
323
+
324
+ // The special case again. If simd_degree=1, then we'll have left_n=1 and
325
+ // right_n=1. Rather than compressing them into a single output, return
326
+ // them directly, to make sure we always have at least two outputs.
327
+ if (left_n == 1) {
328
+ memcpy(out, cv_array, 2 * BLAKE3_OUT_LEN);
329
+ return 2;
330
+ }
331
+
332
+ // Otherwise, do one layer of parent node compression.
333
+ size_t num_chaining_values = left_n + right_n;
334
+ return compress_parents_parallel(cv_array, num_chaining_values, key, flags,
335
+ out);
336
+ }
337
+
338
+ // Hash a subtree with compress_subtree_wide(), and then condense the resulting
339
+ // list of chaining values down to a single parent node. Don't compress that
340
+ // last parent node, however. Instead, return its message bytes (the
341
+ // concatenated chaining values of its children). This is necessary when the
342
+ // first call to update() supplies a complete subtree, because the topmost
343
+ // parent node of that subtree could end up being the root. It's also necessary
344
+ // for extended output in the general case.
345
+ //
346
+ // As with compress_subtree_wide(), this function is not used on inputs of 1
347
+ // chunk or less. That's a different codepath.
348
+ INLINE void
349
+ compress_subtree_to_parent_node(const uint8_t *input, size_t input_len,
350
+ const uint32_t key[8], uint64_t chunk_counter,
351
+ uint8_t flags, uint8_t out[2 * BLAKE3_OUT_LEN],
352
+ bool use_tbb) {
353
+ #if defined(BLAKE3_TESTING)
354
+ assert(input_len > BLAKE3_CHUNK_LEN);
355
+ #endif
356
+
357
+ uint8_t cv_array[MAX_SIMD_DEGREE_OR_2 * BLAKE3_OUT_LEN];
358
+ size_t num_cvs = blake3_compress_subtree_wide(input, input_len, key,
359
+ chunk_counter, flags, cv_array, use_tbb);
360
+ assert(num_cvs <= MAX_SIMD_DEGREE_OR_2);
361
+ // The following loop never executes when MAX_SIMD_DEGREE_OR_2 is 2, because
362
+ // as we just asserted, num_cvs will always be <=2 in that case. But GCC
363
+ // (particularly GCC 8.5) can't tell that it never executes, and if NDEBUG is
364
+ // set then it emits incorrect warnings here. We tried a few different
365
+ // hacks to silence these, but in the end our hacks just produced different
366
+ // warnings (see https://github.com/BLAKE3-team/BLAKE3/pull/380). Out of
367
+ // desperation, we ifdef out this entire loop when we know it's not needed.
368
+ #if MAX_SIMD_DEGREE_OR_2 > 2
369
+ // If MAX_SIMD_DEGREE_OR_2 is greater than 2 and there's enough input,
370
+ // compress_subtree_wide() returns more than 2 chaining values. Condense
371
+ // them into 2 by forming parent nodes repeatedly.
372
+ uint8_t out_array[MAX_SIMD_DEGREE_OR_2 * BLAKE3_OUT_LEN / 2];
373
+ while (num_cvs > 2) {
374
+ num_cvs =
375
+ compress_parents_parallel(cv_array, num_cvs, key, flags, out_array);
376
+ memcpy(cv_array, out_array, num_cvs * BLAKE3_OUT_LEN);
377
+ }
378
+ #endif
379
+ memcpy(out, cv_array, 2 * BLAKE3_OUT_LEN);
380
+ }
381
+
382
+ INLINE void hasher_init_base(blake3_hasher *self, const uint32_t key[8],
383
+ uint8_t flags) {
384
+ memcpy(self->key, key, BLAKE3_KEY_LEN);
385
+ chunk_state_init(&self->chunk, key, flags);
386
+ self->cv_stack_len = 0;
387
+ }
388
+
389
+ void blake3_hasher_init(blake3_hasher *self) { hasher_init_base(self, IV, 0); }
390
+
391
+ void blake3_hasher_init_keyed(blake3_hasher *self,
392
+ const uint8_t key[BLAKE3_KEY_LEN]) {
393
+ uint32_t key_words[8];
394
+ load_key_words(key, key_words);
395
+ hasher_init_base(self, key_words, KEYED_HASH);
396
+ }
397
+
398
+ void blake3_hasher_init_derive_key_raw(blake3_hasher *self, const void *context,
399
+ size_t context_len) {
400
+ blake3_hasher context_hasher;
401
+ hasher_init_base(&context_hasher, IV, DERIVE_KEY_CONTEXT);
402
+ blake3_hasher_update(&context_hasher, context, context_len);
403
+ uint8_t context_key[BLAKE3_KEY_LEN];
404
+ blake3_hasher_finalize(&context_hasher, context_key, BLAKE3_KEY_LEN);
405
+ uint32_t context_key_words[8];
406
+ load_key_words(context_key, context_key_words);
407
+ hasher_init_base(self, context_key_words, DERIVE_KEY_MATERIAL);
408
+ }
409
+
410
+ void blake3_hasher_init_derive_key(blake3_hasher *self, const char *context) {
411
+ blake3_hasher_init_derive_key_raw(self, context, strlen(context));
412
+ }
413
+
414
+ // As described in hasher_push_cv() below, we do "lazy merging", delaying
415
+ // merges until right before the next CV is about to be added. This is
416
+ // different from the reference implementation. Another difference is that we
417
+ // aren't always merging 1 chunk at a time. Instead, each CV might represent
418
+ // any power-of-two number of chunks, as long as the smaller-above-larger stack
419
+ // order is maintained. Instead of the "count the trailing 0-bits" algorithm
420
+ // described in the spec, we use a "count the total number of 1-bits" variant
421
+ // that doesn't require us to retain the subtree size of the CV on top of the
422
+ // stack. The principle is the same: each CV that should remain in the stack is
423
+ // represented by a 1-bit in the total number of chunks (or bytes) so far.
424
+ INLINE void hasher_merge_cv_stack(blake3_hasher *self, uint64_t total_len) {
425
+ size_t post_merge_stack_len = (size_t)popcnt(total_len);
426
+ while (self->cv_stack_len > post_merge_stack_len) {
427
+ uint8_t *parent_node =
428
+ &self->cv_stack[(self->cv_stack_len - 2) * BLAKE3_OUT_LEN];
429
+ output_t output = parent_output(parent_node, self->key, self->chunk.flags);
430
+ output_chaining_value(&output, parent_node);
431
+ self->cv_stack_len -= 1;
432
+ }
433
+ }
434
+
435
+ // In reference_impl.rs, we merge the new CV with existing CVs from the stack
436
+ // before pushing it. We can do that because we know more input is coming, so
437
+ // we know none of the merges are root.
438
+ //
439
+ // This setting is different. We want to feed as much input as possible to
440
+ // compress_subtree_wide(), without setting aside anything for the chunk_state.
441
+ // If the user gives us 64 KiB, we want to parallelize over all 64 KiB at once
442
+ // as a single subtree, if at all possible.
443
+ //
444
+ // This leads to two problems:
445
+ // 1) This 64 KiB input might be the only call that ever gets made to update.
446
+ // In this case, the root node of the 64 KiB subtree would be the root node
447
+ // of the whole tree, and it would need to be ROOT finalized. We can't
448
+ // compress it until we know.
449
+ // 2) This 64 KiB input might complete a larger tree, whose root node is
450
+ // similarly going to be the root of the whole tree. For example, maybe
451
+ // we have 196 KiB (that is, 128 + 64) hashed so far. We can't compress the
452
+ // node at the root of the 256 KiB subtree until we know how to finalize it.
453
+ //
454
+ // The second problem is solved with "lazy merging". That is, when we're about
455
+ // to add a CV to the stack, we don't merge it with anything first, as the
456
+ // reference impl does. Instead we do merges using the *previous* CV that was
457
+ // added, which is sitting on top of the stack, and we put the new CV
458
+ // (unmerged) on top of the stack afterwards. This guarantees that we never
459
+ // merge the root node until finalize().
460
+ //
461
+ // Solving the first problem requires an additional tool,
462
+ // compress_subtree_to_parent_node(). That function always returns the top
463
+ // *two* chaining values of the subtree it's compressing. We then do lazy
464
+ // merging with each of them separately, so that the second CV will always
465
+ // remain unmerged. (That also helps us support extendable output when we're
466
+ // hashing an input all-at-once.)
467
+ INLINE void hasher_push_cv(blake3_hasher *self, uint8_t new_cv[BLAKE3_OUT_LEN],
468
+ uint64_t chunk_counter) {
469
+ hasher_merge_cv_stack(self, chunk_counter);
470
+ memcpy(&self->cv_stack[self->cv_stack_len * BLAKE3_OUT_LEN], new_cv,
471
+ BLAKE3_OUT_LEN);
472
+ self->cv_stack_len += 1;
473
+ }
474
+
475
+ INLINE void blake3_hasher_update_base(blake3_hasher *self, const void *input,
476
+ size_t input_len, bool use_tbb) {
477
+ // Explicitly checking for zero avoids causing UB by passing a null pointer
478
+ // to memcpy. This comes up in practice with things like:
479
+ // std::vector<uint8_t> v;
480
+ // blake3_hasher_update(&hasher, v.data(), v.size());
481
+ if (input_len == 0) {
482
+ return;
483
+ }
484
+
485
+ const uint8_t *input_bytes = (const uint8_t *)input;
486
+
487
+ // If we have some partial chunk bytes in the internal chunk_state, we need
488
+ // to finish that chunk first.
489
+ if (chunk_state_len(&self->chunk) > 0) {
490
+ size_t take = BLAKE3_CHUNK_LEN - chunk_state_len(&self->chunk);
491
+ if (take > input_len) {
492
+ take = input_len;
493
+ }
494
+ chunk_state_update(&self->chunk, input_bytes, take);
495
+ input_bytes += take;
496
+ input_len -= take;
497
+ // If we've filled the current chunk and there's more coming, finalize this
498
+ // chunk and proceed. In this case we know it's not the root.
499
+ if (input_len > 0) {
500
+ output_t output = chunk_state_output(&self->chunk);
501
+ uint8_t chunk_cv[32];
502
+ output_chaining_value(&output, chunk_cv);
503
+ hasher_push_cv(self, chunk_cv, self->chunk.chunk_counter);
504
+ chunk_state_reset(&self->chunk, self->key, self->chunk.chunk_counter + 1);
505
+ } else {
506
+ return;
507
+ }
508
+ }
509
+
510
+ // Now the chunk_state is clear, and we have more input. If there's more than
511
+ // a single chunk (so, definitely not the root chunk), hash the largest whole
512
+ // subtree we can, with the full benefits of SIMD (and maybe in the future,
513
+ // multi-threading) parallelism. Two restrictions:
514
+ // - The subtree has to be a power-of-2 number of chunks. Only subtrees along
515
+ // the right edge can be incomplete, and we don't know where the right edge
516
+ // is going to be until we get to finalize().
517
+ // - The subtree must evenly divide the total number of chunks up until this
518
+ // point (if total is not 0). If the current incomplete subtree is only
519
+ // waiting for 1 more chunk, we can't hash a subtree of 4 chunks. We have
520
+ // to complete the current subtree first.
521
+ // Because we might need to break up the input to form powers of 2, or to
522
+ // evenly divide what we already have, this part runs in a loop.
523
+ while (input_len > BLAKE3_CHUNK_LEN) {
524
+ size_t subtree_len = round_down_to_power_of_2(input_len);
525
+ uint64_t count_so_far = self->chunk.chunk_counter * BLAKE3_CHUNK_LEN;
526
+ // Shrink the subtree_len until it evenly divides the count so far. We know
527
+ // that subtree_len itself is a power of 2, so we can use a bitmasking
528
+ // trick instead of an actual remainder operation. (Note that if the caller
529
+ // consistently passes power-of-2 inputs of the same size, as is hopefully
530
+ // typical, this loop condition will always fail, and subtree_len will
531
+ // always be the full length of the input.)
532
+ //
533
+ // An aside: We don't have to shrink subtree_len quite this much. For
534
+ // example, if count_so_far is 1, we could pass 2 chunks to
535
+ // compress_subtree_to_parent_node. Since we'll get 2 CVs back, we'll still
536
+ // get the right answer in the end, and we might get to use 2-way SIMD
537
+ // parallelism. The problem with this optimization, is that it gets us
538
+ // stuck always hashing 2 chunks. The total number of chunks will remain
539
+ // odd, and we'll never graduate to higher degrees of parallelism. See
540
+ // https://github.com/BLAKE3-team/BLAKE3/issues/69.
541
+ while ((((uint64_t)(subtree_len - 1)) & count_so_far) != 0) {
542
+ subtree_len /= 2;
543
+ }
544
+ // The shrunken subtree_len might now be 1 chunk long. If so, hash that one
545
+ // chunk by itself. Otherwise, compress the subtree into a pair of CVs.
546
+ uint64_t subtree_chunks = subtree_len / BLAKE3_CHUNK_LEN;
547
+ if (subtree_len <= BLAKE3_CHUNK_LEN) {
548
+ blake3_chunk_state chunk_state;
549
+ chunk_state_init(&chunk_state, self->key, self->chunk.flags);
550
+ chunk_state.chunk_counter = self->chunk.chunk_counter;
551
+ chunk_state_update(&chunk_state, input_bytes, subtree_len);
552
+ output_t output = chunk_state_output(&chunk_state);
553
+ uint8_t cv[BLAKE3_OUT_LEN];
554
+ output_chaining_value(&output, cv);
555
+ hasher_push_cv(self, cv, chunk_state.chunk_counter);
556
+ } else {
557
+ // This is the high-performance happy path, though getting here depends
558
+ // on the caller giving us a long enough input.
559
+ uint8_t cv_pair[2 * BLAKE3_OUT_LEN];
560
+ compress_subtree_to_parent_node(input_bytes, subtree_len, self->key,
561
+ self->chunk.chunk_counter,
562
+ self->chunk.flags, cv_pair, use_tbb);
563
+ hasher_push_cv(self, cv_pair, self->chunk.chunk_counter);
564
+ hasher_push_cv(self, &cv_pair[BLAKE3_OUT_LEN],
565
+ self->chunk.chunk_counter + (subtree_chunks / 2));
566
+ }
567
+ self->chunk.chunk_counter += subtree_chunks;
568
+ input_bytes += subtree_len;
569
+ input_len -= subtree_len;
570
+ }
571
+
572
+ // If there's any remaining input less than a full chunk, add it to the chunk
573
+ // state. In that case, also do a final merge loop to make sure the subtree
574
+ // stack doesn't contain any unmerged pairs. The remaining input means we
575
+ // know these merges are non-root. This merge loop isn't strictly necessary
576
+ // here, because hasher_push_chunk_cv already does its own merge loop, but it
577
+ // simplifies blake3_hasher_finalize below.
578
+ if (input_len > 0) {
579
+ chunk_state_update(&self->chunk, input_bytes, input_len);
580
+ hasher_merge_cv_stack(self, self->chunk.chunk_counter);
581
+ }
582
+ }
583
+
584
+ void blake3_hasher_update(blake3_hasher *self, const void *input,
585
+ size_t input_len) {
586
+ bool use_tbb = false;
587
+ blake3_hasher_update_base(self, input, input_len, use_tbb);
588
+ }
589
+
590
+ #if defined(BLAKE3_USE_TBB)
591
+ void blake3_hasher_update_tbb(blake3_hasher *self, const void *input,
592
+ size_t input_len) {
593
+ bool use_tbb = true;
594
+ blake3_hasher_update_base(self, input, input_len, use_tbb);
595
+ }
596
+ #endif // BLAKE3_USE_TBB
597
+
598
+ void blake3_hasher_finalize(const blake3_hasher *self, uint8_t *out,
599
+ size_t out_len) {
600
+ blake3_hasher_finalize_seek(self, 0, out, out_len);
601
+ }
602
+
603
+ void blake3_hasher_finalize_seek(const blake3_hasher *self, uint64_t seek,
604
+ uint8_t *out, size_t out_len) {
605
+ // Explicitly checking for zero avoids causing UB by passing a null pointer
606
+ // to memcpy. This comes up in practice with things like:
607
+ // std::vector<uint8_t> v;
608
+ // blake3_hasher_finalize(&hasher, v.data(), v.size());
609
+ if (out_len == 0) {
610
+ return;
611
+ }
612
+
613
+ // If the subtree stack is empty, then the current chunk is the root.
614
+ if (self->cv_stack_len == 0) {
615
+ output_t output = chunk_state_output(&self->chunk);
616
+ output_root_bytes(&output, seek, out, out_len);
617
+ return;
618
+ }
619
+ // If there are any bytes in the chunk state, finalize that chunk and do a
620
+ // roll-up merge between that chunk hash and every subtree in the stack. In
621
+ // this case, the extra merge loop at the end of blake3_hasher_update
622
+ // guarantees that none of the subtrees in the stack need to be merged with
623
+ // each other first. Otherwise, if there are no bytes in the chunk state,
624
+ // then the top of the stack is a chunk hash, and we start the merge from
625
+ // that.
626
+ output_t output;
627
+ size_t cvs_remaining;
628
+ if (chunk_state_len(&self->chunk) > 0) {
629
+ cvs_remaining = self->cv_stack_len;
630
+ output = chunk_state_output(&self->chunk);
631
+ } else {
632
+ // There are always at least 2 CVs in the stack in this case.
633
+ cvs_remaining = self->cv_stack_len - 2;
634
+ output = parent_output(&self->cv_stack[cvs_remaining * 32], self->key,
635
+ self->chunk.flags);
636
+ }
637
+ while (cvs_remaining > 0) {
638
+ cvs_remaining -= 1;
639
+ uint8_t parent_block[BLAKE3_BLOCK_LEN];
640
+ memcpy(parent_block, &self->cv_stack[cvs_remaining * 32], 32);
641
+ output_chaining_value(&output, &parent_block[32]);
642
+ output = parent_output(parent_block, self->key, self->chunk.flags);
643
+ }
644
+ output_root_bytes(&output, seek, out, out_len);
645
+ }
646
+
647
+ void blake3_hasher_reset(blake3_hasher *self) {
648
+ chunk_state_reset(&self->chunk, self->key, 0);
649
+ self->cv_stack_len = 0;
650
+ }