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,6 @@
1
+ fn main() {
2
+ let build = cc::Build::new();
3
+ let compiler = build.get_compiler();
4
+ let compiler_path = compiler.path().to_string_lossy();
5
+ println!("cargo:rustc-env=COMPILER_PATH={}", compiler_path);
6
+ }
@@ -0,0 +1,27 @@
1
+ use std::process::Command;
2
+
3
+ fn main() {
4
+ // Print the rustc version.
5
+ Command::new(env!("CARGO"))
6
+ .args(&["rustc", "--quiet", "--", "--version"])
7
+ .status()
8
+ .unwrap();
9
+ println!();
10
+
11
+ // Print the Cargo version.
12
+ Command::new(env!("CARGO"))
13
+ .args(&["--version"])
14
+ .status()
15
+ .unwrap();
16
+ println!();
17
+
18
+ // Print the C compiler version. This relies on C compiler detection done
19
+ // in build.rs, which sets the COMPILER_PATH variable.
20
+ let compiler_path = env!("COMPILER_PATH");
21
+ let mut compiler_command = Command::new(compiler_path);
22
+ // Use the --version flag on everything other than MSVC.
23
+ if !cfg!(target_env = "msvc") {
24
+ compiler_command.arg("--version");
25
+ }
26
+ let _ = compiler_command.status().unwrap();
27
+ }
@@ -0,0 +1,6 @@
1
+ [package]
2
+ name = "instruction_set_support"
3
+ version = "0.0.0"
4
+ edition = "2021"
5
+
6
+ [dependencies]
@@ -0,0 +1,10 @@
1
+ fn main() {
2
+ #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
3
+ {
4
+ dbg!(is_x86_feature_detected!("sse2"));
5
+ dbg!(is_x86_feature_detected!("sse4.1"));
6
+ dbg!(is_x86_feature_detected!("avx2"));
7
+ dbg!(is_x86_feature_detected!("avx512f"));
8
+ dbg!(is_x86_feature_detected!("avx512vl"));
9
+ }
10
+ }
@@ -0,0 +1,16 @@
1
+ # Release checklist
2
+
3
+ - Make sure `cargo outdated -R` is clean in the root and in b3sum/.
4
+ - Bump the version in the root Cargo.toml.
5
+ - Bump the version in b3sum/Cargo.toml.
6
+ - Bump the dependency version too, if new features are used.
7
+ - Delete b3sum/Cargo.lock and recreate it with `cargo build` or similar.
8
+ - Update the `-h` output in b3sum/README.md if it's changed.
9
+ - Bump `BLAKE3_VERSION_STRING` in c/blake3.h.
10
+ - Bump `VERSION` in c/CMakeLists.txt.
11
+ - Make a version bump commit with change notes.
12
+ - `git push` and make sure CI is green.
13
+ - `git tag` the version bump commit with the new version number.
14
+ - `git push --tags`
15
+ - `cargo publish` in the root.
16
+ - `cargo publish` in b3sum/.
@@ -0,0 +1,356 @@
1
+ /*
2
+ * fast-pbkdf2 - Optimal PBKDF2-HMAC calculation
3
+ * Written in 2015 by Joseph Birr-Pixton <jpixton@gmail.com>
4
+ *
5
+ * To the extent possible under law, the author(s) have dedicated all
6
+ * copyright and related and neighboring rights to this software to the
7
+ * public domain worldwide. This software is distributed without any
8
+ * warranty.
9
+ *
10
+ * You should have received a copy of the CC0 Public Domain Dedication
11
+ * along with this software. If not, see
12
+ * <http://creativecommons.org/publicdomain/zero/1.0/>.
13
+ */
14
+
15
+ #include "fastpbkdf2.h"
16
+
17
+ #include <assert.h>
18
+ #include <string.h>
19
+ #if defined(__GNUC__)
20
+ #if TARGET_OS_MACCATALYST
21
+ #include <machine/endian.h> // Mac Catalyst
22
+ #else
23
+ #include <endian.h> // iOS
24
+ #endif
25
+ #endif
26
+
27
+ #include <openssl/sha.h>
28
+
29
+ /* --- MSVC doesn't support C99 --- */
30
+ #ifdef _MSC_VER
31
+ #define restrict
32
+ #define _Pragma __pragma
33
+ #endif
34
+
35
+ /* --- Common useful things --- */
36
+ #define MIN(a, b) ((a) > (b)) ? (b) : (a)
37
+
38
+ static inline void write32_be(uint32_t n, uint8_t out[4]) {
39
+ #if defined(__GNUC__) && __GNUC__ >= 4 && __BYTE_ORDER == __LITTLE_ENDIAN
40
+ *(uint32_t *)(out) = __builtin_bswap32(n);
41
+ #else
42
+ out[0] = (n >> 24) & 0xff;
43
+ out[1] = (n >> 16) & 0xff;
44
+ out[2] = (n >> 8) & 0xff;
45
+ out[3] = n & 0xff;
46
+ #endif
47
+ }
48
+
49
+ static inline void write64_be(uint64_t n, uint8_t out[8]) {
50
+ #if defined(__GNUC__) && __GNUC__ >= 4 && __BYTE_ORDER == __LITTLE_ENDIAN
51
+ *(uint64_t *)(out) = __builtin_bswap64(n);
52
+ #else
53
+ write32_be((n >> 32) & 0xffffffff, out);
54
+ write32_be(n & 0xffffffff, out + 4);
55
+ #endif
56
+ }
57
+
58
+ /* --- Optional OpenMP parallelisation of consecutive blocks --- */
59
+ #ifdef WITH_OPENMP
60
+ #define OPENMP_PARALLEL_FOR _Pragma("omp parallel for")
61
+ #else
62
+ #define OPENMP_PARALLEL_FOR
63
+ #endif
64
+
65
+ /* Prepare block (of blocksz bytes) to contain md padding denoting a msg-size
66
+ * message (in bytes). block has a prefix of used bytes.
67
+ *
68
+ * Message length is expressed in 32 bits (so suitable for sha1, sha256,
69
+ * sha512). */
70
+ static inline void md_pad(uint8_t *block, size_t blocksz, size_t used,
71
+ size_t msg) {
72
+ memset(block + used, 0, blocksz - used - 4);
73
+ block[used] = 0x80;
74
+ block += blocksz - 4;
75
+ write32_be((uint32_t)(msg * 8), block);
76
+ }
77
+
78
+ /* Internal function/type names for hash-specific things. */
79
+ #define HMAC_CTX(_name) HMAC_ ## _name ## _ctx
80
+ #define HMAC_INIT(_name) HMAC_ ## _name ## _init
81
+ #define HMAC_UPDATE(_name) HMAC_ ## _name ## _update
82
+ #define HMAC_FINAL(_name) HMAC_ ## _name ## _final
83
+
84
+ #define PBKDF2_F(_name) pbkdf2_f_ ## _name
85
+ #define PBKDF2(_name) pbkdf2_ ## _name
86
+
87
+ /* This macro expands to decls for the whole implementation for a given
88
+ * hash function. Arguments are:
89
+ *
90
+ * _name like 'sha1', added to symbol names
91
+ * _blocksz block size, in bytes
92
+ * _hashsz digest output, in bytes
93
+ * _ctx hash context type
94
+ * _init hash context initialisation function
95
+ * args: (_ctx *c)
96
+ * _update hash context update function
97
+ * args: (_ctx *c, const void *data, size_t ndata)
98
+ * _final hash context finish function
99
+ * args: (void *out, _ctx *c)
100
+ * _xform hash context raw block update function
101
+ * args: (_ctx *c, const void *data)
102
+ * _xcpy hash context raw copy function (only need copy hash state)
103
+ * args: (_ctx * restrict out, const _ctx *restrict in)
104
+ * _xtract hash context state extraction
105
+ * args: args (_ctx *restrict c, uint8_t *restrict out)
106
+ * _xxor hash context xor function (only need xor hash state)
107
+ * args: (_ctx *restrict out, const _ctx *restrict in)
108
+ *
109
+ * The resulting function is named PBKDF2(_name).
110
+ */
111
+ #define DECL_PBKDF2(_name, _blocksz, _hashsz, _ctx, _init, _update, _xform, \
112
+ _final, _xcpy, _xtract, _xxor) \
113
+ typedef struct { \
114
+ _ctx inner; \
115
+ _ctx outer; \
116
+ } HMAC_CTX(_name); \
117
+ \
118
+ static inline void HMAC_INIT(_name)(HMAC_CTX(_name) * ctx, \
119
+ const uint8_t *key, size_t nkey) { \
120
+ /* Prepare key: */ \
121
+ uint8_t k[_blocksz]; \
122
+ \
123
+ /* Shorten long keys. */ \
124
+ if (nkey > _blocksz) { \
125
+ _init(&ctx->inner); \
126
+ _update(&ctx->inner, key, nkey); \
127
+ _final(k, &ctx->inner); \
128
+ \
129
+ key = k; \
130
+ nkey = _hashsz; \
131
+ } \
132
+ \
133
+ /* Standard doesn't cover case where blocksz < hashsz. */ \
134
+ assert(nkey <= _blocksz); \
135
+ \
136
+ /* Right zero-pad short keys. */ \
137
+ if (k != key) memcpy(k, key, nkey); \
138
+ if (_blocksz > nkey) memset(k + nkey, 0, _blocksz - nkey); \
139
+ \
140
+ /* Start inner hash computation */ \
141
+ uint8_t blk_inner[_blocksz]; \
142
+ uint8_t blk_outer[_blocksz]; \
143
+ \
144
+ for (size_t i = 0; i < _blocksz; i++) { \
145
+ blk_inner[i] = 0x36 ^ k[i]; \
146
+ blk_outer[i] = 0x5c ^ k[i]; \
147
+ } \
148
+ \
149
+ _init(&ctx->inner); \
150
+ _update(&ctx->inner, blk_inner, sizeof blk_inner); \
151
+ \
152
+ /* And outer. */ \
153
+ _init(&ctx->outer); \
154
+ _update(&ctx->outer, blk_outer, sizeof blk_outer); \
155
+ } \
156
+ \
157
+ static inline void HMAC_UPDATE(_name)(HMAC_CTX(_name) * ctx, \
158
+ const void *data, size_t ndata) { \
159
+ _update(&ctx->inner, data, ndata); \
160
+ } \
161
+ \
162
+ static inline void HMAC_FINAL(_name)(HMAC_CTX(_name) * ctx, \
163
+ uint8_t out[_hashsz]) { \
164
+ _final(out, &ctx->inner); \
165
+ _update(&ctx->outer, out, _hashsz); \
166
+ _final(out, &ctx->outer); \
167
+ } \
168
+ \
169
+ /* --- PBKDF2 --- */ \
170
+ static inline void PBKDF2_F(_name)( \
171
+ const HMAC_CTX(_name) * startctx, uint32_t counter, const uint8_t *salt, \
172
+ size_t nsalt, uint32_t iterations, uint8_t *out) { \
173
+ uint8_t countbuf[4]; \
174
+ write32_be(counter, countbuf); \
175
+ \
176
+ /* Prepare loop-invariant padding block. */ \
177
+ uint8_t Ublock[_blocksz]; \
178
+ md_pad(Ublock, _blocksz, _hashsz, _blocksz + _hashsz); \
179
+ \
180
+ /* First iteration: \
181
+ * U_1 = PRF(P, S || INT_32_BE(i)) \
182
+ */ \
183
+ HMAC_CTX(_name) ctx = *startctx; \
184
+ HMAC_UPDATE(_name)(&ctx, salt, nsalt); \
185
+ HMAC_UPDATE(_name)(&ctx, countbuf, sizeof countbuf); \
186
+ HMAC_FINAL(_name)(&ctx, Ublock); \
187
+ _ctx result = ctx.outer; \
188
+ \
189
+ /* Subsequent iterations: \
190
+ * U_c = PRF(P, U_{c-1}) \
191
+ */ \
192
+ for (uint32_t i = 1; i < iterations; i++) { \
193
+ /* Complete inner hash with previous U */ \
194
+ _xcpy(&ctx.inner, &startctx->inner); \
195
+ _xform(&ctx.inner, Ublock); \
196
+ _xtract(&ctx.inner, Ublock); \
197
+ /* Complete outer hash with inner output */ \
198
+ _xcpy(&ctx.outer, &startctx->outer); \
199
+ _xform(&ctx.outer, Ublock); \
200
+ _xtract(&ctx.outer, Ublock); \
201
+ _xxor(&result, &ctx.outer); \
202
+ } \
203
+ \
204
+ /* Reform result into output buffer. */ \
205
+ _xtract(&result, out); \
206
+ } \
207
+ \
208
+ static inline void PBKDF2(_name)( \
209
+ const uint8_t *pw, size_t npw, const uint8_t *salt, size_t nsalt, \
210
+ uint32_t iterations, uint8_t *out, size_t nout) { \
211
+ assert(iterations); \
212
+ assert(out &&nout); \
213
+ \
214
+ /* Starting point for inner loop. */ \
215
+ HMAC_CTX(_name) ctx; \
216
+ HMAC_INIT(_name)(&ctx, pw, npw); \
217
+ \
218
+ /* How many blocks do we need? */ \
219
+ uint32_t blocks_needed = (uint32_t)(nout + _hashsz - 1) / _hashsz; \
220
+ \
221
+ OPENMP_PARALLEL_FOR \
222
+ for (uint32_t counter = 1; counter <= blocks_needed; counter++) { \
223
+ uint8_t block[_hashsz]; \
224
+ PBKDF2_F(_name)(&ctx, counter, salt, nsalt, iterations, block); \
225
+ \
226
+ size_t offset = (counter - 1) * _hashsz; \
227
+ size_t taken = MIN(nout - offset, _hashsz); \
228
+ memcpy(out + offset, block, taken); \
229
+ } \
230
+ }
231
+
232
+ static inline void sha1_extract(SHA_CTX *restrict ctx, uint8_t *restrict out) {
233
+ write32_be(ctx->h0, out);
234
+ write32_be(ctx->h1, out + 4);
235
+ write32_be(ctx->h2, out + 8);
236
+ write32_be(ctx->h3, out + 12);
237
+ write32_be(ctx->h4, out + 16);
238
+ }
239
+
240
+ static inline void sha1_cpy(SHA_CTX *restrict out, const SHA_CTX *restrict in) {
241
+ out->h0 = in->h0;
242
+ out->h1 = in->h1;
243
+ out->h2 = in->h2;
244
+ out->h3 = in->h3;
245
+ out->h4 = in->h4;
246
+ }
247
+
248
+ static inline void sha1_xor(SHA_CTX *restrict out, const SHA_CTX *restrict in) {
249
+ out->h0 ^= in->h0;
250
+ out->h1 ^= in->h1;
251
+ out->h2 ^= in->h2;
252
+ out->h3 ^= in->h3;
253
+ out->h4 ^= in->h4;
254
+ }
255
+
256
+ DECL_PBKDF2(sha1, SHA_CBLOCK, SHA_DIGEST_LENGTH, SHA_CTX, SHA1_Init,
257
+ SHA1_Update, SHA1_Transform, SHA1_Final, sha1_cpy, sha1_extract,
258
+ sha1_xor)
259
+
260
+ static inline void sha256_extract(SHA256_CTX *restrict ctx,
261
+ uint8_t *restrict out) {
262
+ write32_be(ctx->h[0], out);
263
+ write32_be(ctx->h[1], out + 4);
264
+ write32_be(ctx->h[2], out + 8);
265
+ write32_be(ctx->h[3], out + 12);
266
+ write32_be(ctx->h[4], out + 16);
267
+ write32_be(ctx->h[5], out + 20);
268
+ write32_be(ctx->h[6], out + 24);
269
+ write32_be(ctx->h[7], out + 28);
270
+ }
271
+
272
+ static inline void sha256_cpy(SHA256_CTX *restrict out,
273
+ const SHA256_CTX *restrict in) {
274
+ out->h[0] = in->h[0];
275
+ out->h[1] = in->h[1];
276
+ out->h[2] = in->h[2];
277
+ out->h[3] = in->h[3];
278
+ out->h[4] = in->h[4];
279
+ out->h[5] = in->h[5];
280
+ out->h[6] = in->h[6];
281
+ out->h[7] = in->h[7];
282
+ }
283
+
284
+ static inline void sha256_xor(SHA256_CTX *restrict out,
285
+ const SHA256_CTX *restrict in) {
286
+ out->h[0] ^= in->h[0];
287
+ out->h[1] ^= in->h[1];
288
+ out->h[2] ^= in->h[2];
289
+ out->h[3] ^= in->h[3];
290
+ out->h[4] ^= in->h[4];
291
+ out->h[5] ^= in->h[5];
292
+ out->h[6] ^= in->h[6];
293
+ out->h[7] ^= in->h[7];
294
+ }
295
+
296
+ DECL_PBKDF2(sha256, SHA256_CBLOCK, SHA256_DIGEST_LENGTH, SHA256_CTX,
297
+ SHA256_Init, SHA256_Update, SHA256_Transform, SHA256_Final,
298
+ sha256_cpy, sha256_extract, sha256_xor)
299
+
300
+ static inline void sha512_extract(SHA512_CTX *restrict ctx,
301
+ uint8_t *restrict out) {
302
+ write64_be(ctx->h[0], out);
303
+ write64_be(ctx->h[1], out + 8);
304
+ write64_be(ctx->h[2], out + 16);
305
+ write64_be(ctx->h[3], out + 24);
306
+ write64_be(ctx->h[4], out + 32);
307
+ write64_be(ctx->h[5], out + 40);
308
+ write64_be(ctx->h[6], out + 48);
309
+ write64_be(ctx->h[7], out + 56);
310
+ }
311
+
312
+ static inline void sha512_cpy(SHA512_CTX *restrict out,
313
+ const SHA512_CTX *restrict in) {
314
+ out->h[0] = in->h[0];
315
+ out->h[1] = in->h[1];
316
+ out->h[2] = in->h[2];
317
+ out->h[3] = in->h[3];
318
+ out->h[4] = in->h[4];
319
+ out->h[5] = in->h[5];
320
+ out->h[6] = in->h[6];
321
+ out->h[7] = in->h[7];
322
+ }
323
+
324
+ static inline void sha512_xor(SHA512_CTX *restrict out,
325
+ const SHA512_CTX *restrict in) {
326
+ out->h[0] ^= in->h[0];
327
+ out->h[1] ^= in->h[1];
328
+ out->h[2] ^= in->h[2];
329
+ out->h[3] ^= in->h[3];
330
+ out->h[4] ^= in->h[4];
331
+ out->h[5] ^= in->h[5];
332
+ out->h[6] ^= in->h[6];
333
+ out->h[7] ^= in->h[7];
334
+ }
335
+
336
+ DECL_PBKDF2(sha512, SHA512_CBLOCK, SHA512_DIGEST_LENGTH, SHA512_CTX,
337
+ SHA512_Init, SHA512_Update, SHA512_Transform, SHA512_Final,
338
+ sha512_cpy, sha512_extract, sha512_xor)
339
+
340
+ void fastpbkdf2_hmac_sha1(const uint8_t *pw, size_t npw, const uint8_t *salt,
341
+ size_t nsalt, uint32_t iterations, uint8_t *out,
342
+ size_t nout) {
343
+ PBKDF2(sha1)(pw, npw, salt, nsalt, iterations, out, nout);
344
+ }
345
+
346
+ void fastpbkdf2_hmac_sha256(const uint8_t *pw, size_t npw, const uint8_t *salt,
347
+ size_t nsalt, uint32_t iterations, uint8_t *out,
348
+ size_t nout) {
349
+ PBKDF2(sha256)(pw, npw, salt, nsalt, iterations, out, nout);
350
+ }
351
+
352
+ void fastpbkdf2_hmac_sha512(const uint8_t *pw, size_t npw, const uint8_t *salt,
353
+ size_t nsalt, uint32_t iterations, uint8_t *out,
354
+ size_t nout) {
355
+ PBKDF2(sha512)(pw, npw, salt, nsalt, iterations, out, nout);
356
+ }
@@ -0,0 +1,68 @@
1
+ /*
2
+ * fastpbkdf2 - Faster PBKDF2-HMAC calculation
3
+ * Written in 2015 by Joseph Birr-Pixton <jpixton@gmail.com>
4
+ *
5
+ * To the extent possible under law, the author(s) have dedicated all
6
+ * copyright and related and neighboring rights to this software to the
7
+ * public domain worldwide. This software is distributed without any
8
+ * warranty.
9
+ *
10
+ * You should have received a copy of the CC0 Public Domain Dedication
11
+ * along with this software. If not, see
12
+ * <http://creativecommons.org/publicdomain/zero/1.0/>.
13
+ */
14
+
15
+ #ifndef FASTPBKDF2_H
16
+ #define FASTPBKDF2_H
17
+
18
+ #include <stdint.h>
19
+ #include <stdlib.h>
20
+
21
+ #ifdef __cplusplus
22
+ extern "C" {
23
+ #endif
24
+
25
+ /** Calculates PBKDF2-HMAC-SHA1.
26
+ *
27
+ * @p npw bytes at @p pw are the password input.
28
+ * @p nsalt bytes at @p salt are the salt input.
29
+ * @p iterations is the PBKDF2 iteration count and must be non-zero.
30
+ * @p nout bytes of output are written to @p out. @p nout must be non-zero.
31
+ *
32
+ * This function cannot fail; it does not report errors.
33
+ */
34
+ void fastpbkdf2_hmac_sha1(const uint8_t *pw, size_t npw, const uint8_t *salt,
35
+ size_t nsalt, uint32_t iterations, uint8_t *out,
36
+ size_t nout);
37
+
38
+ /** Calculates PBKDF2-HMAC-SHA256.
39
+ *
40
+ * @p npw bytes at @p pw are the password input.
41
+ * @p nsalt bytes at @p salt are the salt input.
42
+ * @p iterations is the PBKDF2 iteration count and must be non-zero.
43
+ * @p nout bytes of output are written to @p out. @p nout must be non-zero.
44
+ *
45
+ * This function cannot fail; it does not report errors.
46
+ */
47
+ void fastpbkdf2_hmac_sha256(const uint8_t *pw, size_t npw, const uint8_t *salt,
48
+ size_t nsalt, uint32_t iterations, uint8_t *out,
49
+ size_t nout);
50
+
51
+ /** Calculates PBKDF2-HMAC-SHA512.
52
+ *
53
+ * @p npw bytes at @p pw are the password input.
54
+ * @p nsalt bytes at @p salt are the salt input.
55
+ * @p iterations is the PBKDF2 iteration count and must be non-zero.
56
+ * @p nout bytes of output are written to @p out. @p nout must be non-zero.
57
+ *
58
+ * This function cannot fail; it does not report errors.
59
+ */
60
+ void fastpbkdf2_hmac_sha512(const uint8_t *pw, size_t npw, const uint8_t *salt,
61
+ size_t nsalt, uint32_t iterations, uint8_t *out,
62
+ size_t nout);
63
+
64
+ #ifdef __cplusplus
65
+ }
66
+ #endif
67
+
68
+ #endif