react-native-quick-crypto 1.0.0-beta.8 → 1.0.0

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 (480) hide show
  1. package/QuickCrypto.podspec +145 -6
  2. package/README.md +14 -27
  3. package/android/CMakeLists.txt +62 -7
  4. package/android/build.gradle +12 -2
  5. package/android/src/main/java/com/margelo/nitro/quickcrypto/QuickCryptoPackage.java +0 -2
  6. package/app.plugin.js +3 -0
  7. package/cpp/blake3/HybridBlake3.cpp +118 -0
  8. package/cpp/blake3/HybridBlake3.hpp +35 -0
  9. package/cpp/cipher/CCMCipher.cpp +199 -0
  10. package/cpp/cipher/CCMCipher.hpp +26 -0
  11. package/cpp/cipher/ChaCha20Cipher.cpp +97 -0
  12. package/cpp/cipher/ChaCha20Cipher.hpp +25 -0
  13. package/cpp/cipher/ChaCha20Poly1305Cipher.cpp +170 -0
  14. package/cpp/cipher/ChaCha20Poly1305Cipher.hpp +30 -0
  15. package/cpp/cipher/GCMCipher.cpp +68 -0
  16. package/cpp/cipher/GCMCipher.hpp +14 -0
  17. package/cpp/cipher/HybridCipher.cpp +322 -0
  18. package/cpp/cipher/HybridCipher.hpp +68 -0
  19. package/cpp/cipher/HybridCipherFactory.hpp +105 -0
  20. package/cpp/cipher/HybridRsaCipher.cpp +348 -0
  21. package/cpp/cipher/HybridRsaCipher.hpp +29 -0
  22. package/cpp/cipher/OCBCipher.cpp +55 -0
  23. package/cpp/cipher/OCBCipher.hpp +19 -0
  24. package/cpp/cipher/XSalsa20Cipher.cpp +61 -0
  25. package/cpp/cipher/XSalsa20Cipher.hpp +33 -0
  26. package/cpp/ec/HybridEcKeyPair.cpp +428 -0
  27. package/cpp/ec/HybridEcKeyPair.hpp +48 -0
  28. package/cpp/ed25519/HybridEdKeyPair.cpp +228 -98
  29. package/cpp/ed25519/HybridEdKeyPair.hpp +42 -56
  30. package/cpp/hash/HybridHash.cpp +185 -0
  31. package/cpp/hash/HybridHash.hpp +43 -0
  32. package/cpp/hmac/HybridHmac.cpp +95 -0
  33. package/cpp/hmac/HybridHmac.hpp +31 -0
  34. package/cpp/keys/HybridKeyObjectHandle.cpp +749 -0
  35. package/cpp/keys/HybridKeyObjectHandle.hpp +51 -0
  36. package/cpp/keys/KeyObjectData.cpp +268 -0
  37. package/cpp/keys/KeyObjectData.hpp +71 -0
  38. package/cpp/keys/node.h +5 -0
  39. package/cpp/pbkdf2/HybridPbkdf2.cpp +34 -55
  40. package/cpp/pbkdf2/HybridPbkdf2.hpp +5 -16
  41. package/cpp/random/HybridRandom.cpp +6 -17
  42. package/cpp/random/HybridRandom.hpp +5 -6
  43. package/cpp/rsa/HybridRsaKeyPair.cpp +154 -0
  44. package/cpp/rsa/HybridRsaKeyPair.hpp +43 -0
  45. package/cpp/sign/HybridSignHandle.cpp +191 -0
  46. package/cpp/sign/HybridSignHandle.hpp +36 -0
  47. package/cpp/sign/HybridVerifyHandle.cpp +158 -0
  48. package/cpp/sign/HybridVerifyHandle.hpp +36 -0
  49. package/cpp/sign/SignUtils.hpp +108 -0
  50. package/cpp/utils/Macros.hpp +68 -0
  51. package/cpp/utils/Utils.hpp +43 -2
  52. package/cpp/utils/base64.h +309 -0
  53. package/deps/blake3/.cargo/config.toml +2 -0
  54. package/deps/blake3/.git-blame-ignore-revs +2 -0
  55. package/deps/blake3/.github/workflows/build_b3sum.py +38 -0
  56. package/deps/blake3/.github/workflows/ci.yml +491 -0
  57. package/deps/blake3/.github/workflows/tag.yml +43 -0
  58. package/deps/blake3/.github/workflows/upload_github_release_asset.py +73 -0
  59. package/deps/blake3/CONTRIBUTING.md +31 -0
  60. package/deps/blake3/Cargo.toml +135 -0
  61. package/deps/blake3/LICENSE_A2 +202 -0
  62. package/deps/blake3/LICENSE_A2LLVM +219 -0
  63. package/deps/blake3/LICENSE_CC0 +121 -0
  64. package/deps/blake3/README.md +229 -0
  65. package/deps/blake3/b3sum/Cargo.lock +513 -0
  66. package/deps/blake3/b3sum/Cargo.toml +26 -0
  67. package/deps/blake3/b3sum/README.md +72 -0
  68. package/deps/blake3/b3sum/src/main.rs +564 -0
  69. package/deps/blake3/b3sum/src/unit_tests.rs +235 -0
  70. package/deps/blake3/b3sum/tests/cli_tests.rs +680 -0
  71. package/deps/blake3/b3sum/what_does_check_do.md +176 -0
  72. package/deps/blake3/benches/bench.rs +623 -0
  73. package/deps/blake3/build.rs +389 -0
  74. package/deps/blake3/c/CMakeLists.txt +383 -0
  75. package/deps/blake3/c/CMakePresets.json +73 -0
  76. package/deps/blake3/c/Makefile.testing +82 -0
  77. package/deps/blake3/c/README.md +403 -0
  78. package/deps/blake3/c/blake3-config.cmake.in +14 -0
  79. package/deps/blake3/c/blake3.c +650 -0
  80. package/deps/blake3/c/blake3.h +86 -0
  81. package/deps/blake3/c/blake3_avx2.c +326 -0
  82. package/deps/blake3/c/blake3_avx2_x86-64_unix.S +1815 -0
  83. package/deps/blake3/c/blake3_avx2_x86-64_windows_gnu.S +1817 -0
  84. package/deps/blake3/c/blake3_avx2_x86-64_windows_msvc.asm +1828 -0
  85. package/deps/blake3/c/blake3_avx512.c +1388 -0
  86. package/deps/blake3/c/blake3_avx512_x86-64_unix.S +4824 -0
  87. package/deps/blake3/c/blake3_avx512_x86-64_windows_gnu.S +2615 -0
  88. package/deps/blake3/c/blake3_avx512_x86-64_windows_msvc.asm +2634 -0
  89. package/deps/blake3/c/blake3_c_rust_bindings/Cargo.toml +32 -0
  90. package/deps/blake3/c/blake3_c_rust_bindings/README.md +4 -0
  91. package/deps/blake3/c/blake3_c_rust_bindings/benches/bench.rs +477 -0
  92. package/deps/blake3/c/blake3_c_rust_bindings/build.rs +253 -0
  93. package/deps/blake3/c/blake3_c_rust_bindings/cross_test.sh +31 -0
  94. package/deps/blake3/c/blake3_c_rust_bindings/src/lib.rs +333 -0
  95. package/deps/blake3/c/blake3_c_rust_bindings/src/test.rs +696 -0
  96. package/deps/blake3/c/blake3_dispatch.c +332 -0
  97. package/deps/blake3/c/blake3_impl.h +333 -0
  98. package/deps/blake3/c/blake3_neon.c +366 -0
  99. package/deps/blake3/c/blake3_portable.c +160 -0
  100. package/deps/blake3/c/blake3_sse2.c +566 -0
  101. package/deps/blake3/c/blake3_sse2_x86-64_unix.S +2291 -0
  102. package/deps/blake3/c/blake3_sse2_x86-64_windows_gnu.S +2332 -0
  103. package/deps/blake3/c/blake3_sse2_x86-64_windows_msvc.asm +2350 -0
  104. package/deps/blake3/c/blake3_sse41.c +560 -0
  105. package/deps/blake3/c/blake3_sse41_x86-64_unix.S +2028 -0
  106. package/deps/blake3/c/blake3_sse41_x86-64_windows_gnu.S +2069 -0
  107. package/deps/blake3/c/blake3_sse41_x86-64_windows_msvc.asm +2089 -0
  108. package/deps/blake3/c/blake3_tbb.cpp +37 -0
  109. package/deps/blake3/c/dependencies/CMakeLists.txt +3 -0
  110. package/deps/blake3/c/dependencies/tbb/CMakeLists.txt +28 -0
  111. package/deps/blake3/c/example.c +36 -0
  112. package/deps/blake3/c/example_tbb.c +57 -0
  113. package/deps/blake3/c/libblake3.pc.in +12 -0
  114. package/deps/blake3/c/main.c +166 -0
  115. package/deps/blake3/c/test.py +97 -0
  116. package/deps/blake3/media/B3.svg +70 -0
  117. package/deps/blake3/media/BLAKE3.svg +85 -0
  118. package/deps/blake3/media/speed.svg +1474 -0
  119. package/deps/blake3/reference_impl/Cargo.toml +8 -0
  120. package/deps/blake3/reference_impl/README.md +14 -0
  121. package/deps/blake3/reference_impl/reference_impl.rs +374 -0
  122. package/deps/blake3/src/ffi_avx2.rs +65 -0
  123. package/deps/blake3/src/ffi_avx512.rs +169 -0
  124. package/deps/blake3/src/ffi_neon.rs +82 -0
  125. package/deps/blake3/src/ffi_sse2.rs +126 -0
  126. package/deps/blake3/src/ffi_sse41.rs +126 -0
  127. package/deps/blake3/src/guts.rs +60 -0
  128. package/deps/blake3/src/hazmat.rs +704 -0
  129. package/deps/blake3/src/io.rs +64 -0
  130. package/deps/blake3/src/join.rs +92 -0
  131. package/deps/blake3/src/lib.rs +1835 -0
  132. package/deps/blake3/src/platform.rs +587 -0
  133. package/deps/blake3/src/portable.rs +198 -0
  134. package/deps/blake3/src/rust_avx2.rs +474 -0
  135. package/deps/blake3/src/rust_sse2.rs +775 -0
  136. package/deps/blake3/src/rust_sse41.rs +766 -0
  137. package/deps/blake3/src/test.rs +1049 -0
  138. package/deps/blake3/src/traits.rs +227 -0
  139. package/deps/blake3/src/wasm32_simd.rs +794 -0
  140. package/deps/blake3/test_vectors/Cargo.toml +19 -0
  141. package/deps/blake3/test_vectors/cross_test.sh +25 -0
  142. package/deps/blake3/test_vectors/src/bin/generate.rs +4 -0
  143. package/deps/blake3/test_vectors/src/lib.rs +350 -0
  144. package/deps/blake3/test_vectors/test_vectors.json +217 -0
  145. package/deps/blake3/tools/compiler_version/Cargo.toml +7 -0
  146. package/deps/blake3/tools/compiler_version/build.rs +6 -0
  147. package/deps/blake3/tools/compiler_version/src/main.rs +27 -0
  148. package/deps/blake3/tools/instruction_set_support/Cargo.toml +6 -0
  149. package/deps/blake3/tools/instruction_set_support/src/main.rs +10 -0
  150. package/deps/blake3/tools/release.md +16 -0
  151. package/deps/fastpbkdf2/fastpbkdf2.c +5 -1
  152. package/deps/ncrypto/ncrypto.cc +4679 -0
  153. package/deps/ncrypto/ncrypto.h +1625 -0
  154. package/lib/commonjs/blake3.js +98 -0
  155. package/lib/commonjs/blake3.js.map +1 -0
  156. package/lib/commonjs/cipher.js +180 -0
  157. package/lib/commonjs/cipher.js.map +1 -0
  158. package/lib/commonjs/constants.js +32 -0
  159. package/lib/commonjs/constants.js.map +1 -0
  160. package/lib/commonjs/ec.js +480 -0
  161. package/lib/commonjs/ec.js.map +1 -0
  162. package/lib/commonjs/ed.js +214 -2
  163. package/lib/commonjs/ed.js.map +1 -1
  164. package/lib/commonjs/expo-plugin/@types.js +2 -0
  165. package/lib/commonjs/expo-plugin/@types.js.map +1 -0
  166. package/lib/commonjs/expo-plugin/withRNQC.js +25 -0
  167. package/lib/commonjs/expo-plugin/withRNQC.js.map +1 -0
  168. package/lib/commonjs/expo-plugin/withSodiumAndroid.js +25 -0
  169. package/lib/commonjs/expo-plugin/withSodiumAndroid.js.map +1 -0
  170. package/lib/commonjs/expo-plugin/withSodiumIos.js +26 -0
  171. package/lib/commonjs/expo-plugin/withSodiumIos.js.map +1 -0
  172. package/lib/commonjs/expo-plugin/withXCode.js +51 -0
  173. package/lib/commonjs/expo-plugin/withXCode.js.map +1 -0
  174. package/lib/commonjs/hash.js +215 -0
  175. package/lib/commonjs/hash.js.map +1 -0
  176. package/lib/commonjs/hmac.js +109 -0
  177. package/lib/commonjs/hmac.js.map +1 -0
  178. package/lib/commonjs/index.js +102 -24
  179. package/lib/commonjs/index.js.map +1 -1
  180. package/lib/commonjs/keys/classes.js +109 -52
  181. package/lib/commonjs/keys/classes.js.map +1 -1
  182. package/lib/commonjs/keys/generateKeyPair.js +141 -144
  183. package/lib/commonjs/keys/generateKeyPair.js.map +1 -1
  184. package/lib/commonjs/keys/index.js +229 -0
  185. package/lib/commonjs/keys/index.js.map +1 -1
  186. package/lib/commonjs/keys/publicCipher.js +152 -0
  187. package/lib/commonjs/keys/publicCipher.js.map +1 -0
  188. package/lib/commonjs/keys/signVerify.js +178 -39
  189. package/lib/commonjs/keys/signVerify.js.map +1 -1
  190. package/lib/commonjs/keys/utils.js +18 -13
  191. package/lib/commonjs/keys/utils.js.map +1 -1
  192. package/lib/commonjs/pbkdf2.js.map +1 -1
  193. package/lib/commonjs/random.js +6 -0
  194. package/lib/commonjs/random.js.map +1 -1
  195. package/lib/commonjs/rsa.js +202 -0
  196. package/lib/commonjs/rsa.js.map +1 -0
  197. package/lib/commonjs/specs/blake3.nitro.js +6 -0
  198. package/lib/commonjs/specs/blake3.nitro.js.map +1 -0
  199. package/lib/commonjs/specs/cipher.nitro.js +6 -0
  200. package/lib/commonjs/specs/cipher.nitro.js.map +1 -0
  201. package/lib/commonjs/specs/ecKeyPair.nitro.js +6 -0
  202. package/lib/commonjs/specs/ecKeyPair.nitro.js.map +1 -0
  203. package/lib/commonjs/specs/hash.nitro.js +6 -0
  204. package/lib/commonjs/specs/hash.nitro.js.map +1 -0
  205. package/lib/commonjs/specs/hmac.nitro.js +6 -0
  206. package/lib/commonjs/specs/hmac.nitro.js.map +1 -0
  207. package/lib/commonjs/specs/rsaCipher.nitro.js +6 -0
  208. package/lib/commonjs/specs/rsaCipher.nitro.js.map +1 -0
  209. package/lib/commonjs/specs/rsaKeyPair.nitro.js +6 -0
  210. package/lib/commonjs/specs/rsaKeyPair.nitro.js.map +1 -0
  211. package/lib/commonjs/specs/sign.nitro.js +6 -0
  212. package/lib/commonjs/specs/sign.nitro.js.map +1 -0
  213. package/lib/commonjs/subtle.js +987 -0
  214. package/lib/commonjs/subtle.js.map +1 -0
  215. package/lib/commonjs/utils/cipher.js +64 -0
  216. package/lib/commonjs/utils/cipher.js.map +1 -0
  217. package/lib/commonjs/utils/conversion.js +44 -5
  218. package/lib/commonjs/utils/conversion.js.map +1 -1
  219. package/lib/commonjs/utils/hashnames.js +2 -1
  220. package/lib/commonjs/utils/hashnames.js.map +1 -1
  221. package/lib/commonjs/utils/index.js +11 -0
  222. package/lib/commonjs/utils/index.js.map +1 -1
  223. package/lib/commonjs/utils/noble.js +82 -0
  224. package/lib/commonjs/utils/noble.js.map +1 -0
  225. package/lib/commonjs/utils/types.js +32 -17
  226. package/lib/commonjs/utils/types.js.map +1 -1
  227. package/lib/commonjs/utils/validation.js +74 -1
  228. package/lib/commonjs/utils/validation.js.map +1 -1
  229. package/lib/module/blake3.js +90 -0
  230. package/lib/module/blake3.js.map +1 -0
  231. package/lib/module/cipher.js +173 -0
  232. package/lib/module/cipher.js.map +1 -0
  233. package/lib/module/constants.js +28 -0
  234. package/lib/module/constants.js.map +1 -0
  235. package/lib/module/ec.js +470 -0
  236. package/lib/module/ec.js.map +1 -0
  237. package/lib/module/ed.js +212 -3
  238. package/lib/module/ed.js.map +1 -1
  239. package/lib/module/expo-plugin/@types.js +2 -0
  240. package/lib/module/expo-plugin/@types.js.map +1 -0
  241. package/lib/module/expo-plugin/withRNQC.js +21 -0
  242. package/lib/module/expo-plugin/withRNQC.js.map +1 -0
  243. package/lib/module/expo-plugin/withSodiumAndroid.js +20 -0
  244. package/lib/module/expo-plugin/withSodiumAndroid.js.map +1 -0
  245. package/lib/module/expo-plugin/withSodiumIos.js +20 -0
  246. package/lib/module/expo-plugin/withSodiumIos.js.map +1 -0
  247. package/lib/module/expo-plugin/withXCode.js +46 -0
  248. package/lib/module/expo-plugin/withXCode.js.map +1 -0
  249. package/lib/module/hash.js +207 -0
  250. package/lib/module/hash.js.map +1 -0
  251. package/lib/module/hmac.js +104 -0
  252. package/lib/module/hmac.js.map +1 -0
  253. package/lib/module/index.js +21 -21
  254. package/lib/module/index.js.map +1 -1
  255. package/lib/module/keys/classes.js +106 -49
  256. package/lib/module/keys/classes.js.map +1 -1
  257. package/lib/module/keys/generateKeyPair.js +134 -143
  258. package/lib/module/keys/generateKeyPair.js.map +1 -1
  259. package/lib/module/keys/index.js +161 -22
  260. package/lib/module/keys/index.js.map +1 -1
  261. package/lib/module/keys/publicCipher.js +145 -0
  262. package/lib/module/keys/publicCipher.js.map +1 -0
  263. package/lib/module/keys/signVerify.js +170 -39
  264. package/lib/module/keys/signVerify.js.map +1 -1
  265. package/lib/module/keys/utils.js +16 -12
  266. package/lib/module/keys/utils.js.map +1 -1
  267. package/lib/module/pbkdf2.js.map +1 -1
  268. package/lib/module/random.js +6 -0
  269. package/lib/module/random.js.map +1 -1
  270. package/lib/module/rsa.js +194 -0
  271. package/lib/module/rsa.js.map +1 -0
  272. package/lib/module/specs/blake3.nitro.js +4 -0
  273. package/lib/module/specs/blake3.nitro.js.map +1 -0
  274. package/lib/module/specs/cipher.nitro.js +4 -0
  275. package/lib/module/specs/cipher.nitro.js.map +1 -0
  276. package/lib/module/specs/ecKeyPair.nitro.js +4 -0
  277. package/lib/module/specs/ecKeyPair.nitro.js.map +1 -0
  278. package/lib/module/specs/hash.nitro.js +4 -0
  279. package/lib/module/specs/hash.nitro.js.map +1 -0
  280. package/lib/module/specs/hmac.nitro.js +4 -0
  281. package/lib/module/specs/hmac.nitro.js.map +1 -0
  282. package/lib/module/specs/rsaCipher.nitro.js +4 -0
  283. package/lib/module/specs/rsaCipher.nitro.js.map +1 -0
  284. package/lib/module/specs/rsaKeyPair.nitro.js +4 -0
  285. package/lib/module/specs/rsaKeyPair.nitro.js.map +1 -0
  286. package/lib/module/specs/sign.nitro.js +4 -0
  287. package/lib/module/specs/sign.nitro.js.map +1 -0
  288. package/lib/module/subtle.js +982 -0
  289. package/lib/module/subtle.js.map +1 -0
  290. package/lib/module/utils/cipher.js +56 -0
  291. package/lib/module/utils/cipher.js.map +1 -0
  292. package/lib/module/utils/conversion.js +26 -5
  293. package/lib/module/utils/conversion.js.map +1 -1
  294. package/lib/module/utils/hashnames.js +2 -1
  295. package/lib/module/utils/hashnames.js.map +1 -1
  296. package/lib/module/utils/index.js +1 -0
  297. package/lib/module/utils/index.js.map +1 -1
  298. package/lib/module/utils/noble.js +76 -0
  299. package/lib/module/utils/noble.js.map +1 -0
  300. package/lib/module/utils/types.js +32 -17
  301. package/lib/module/utils/types.js.map +1 -1
  302. package/lib/module/utils/validation.js +69 -1
  303. package/lib/module/utils/validation.js.map +1 -1
  304. package/lib/tsconfig.tsbuildinfo +1 -1
  305. package/lib/typescript/blake3.d.ts +33 -0
  306. package/lib/typescript/blake3.d.ts.map +1 -0
  307. package/lib/typescript/cipher.d.ts +60 -0
  308. package/lib/typescript/cipher.d.ts.map +1 -0
  309. package/lib/typescript/constants.d.ts +21 -0
  310. package/lib/typescript/constants.d.ts.map +1 -0
  311. package/lib/typescript/ec.d.ts +22 -0
  312. package/lib/typescript/ec.d.ts.map +1 -0
  313. package/lib/typescript/ed.d.ts +28 -1
  314. package/lib/typescript/ed.d.ts.map +1 -1
  315. package/lib/typescript/expo-plugin/@types.d.ts +8 -0
  316. package/lib/typescript/expo-plugin/@types.d.ts.map +1 -0
  317. package/lib/typescript/expo-plugin/withRNQC.d.ts +4 -0
  318. package/lib/typescript/expo-plugin/withRNQC.d.ts.map +1 -0
  319. package/lib/typescript/expo-plugin/withSodiumAndroid.d.ts +4 -0
  320. package/lib/typescript/expo-plugin/withSodiumAndroid.d.ts.map +1 -0
  321. package/lib/typescript/expo-plugin/withSodiumIos.d.ts +4 -0
  322. package/lib/typescript/expo-plugin/withSodiumIos.d.ts.map +1 -0
  323. package/lib/typescript/expo-plugin/withXCode.d.ts +9 -0
  324. package/lib/typescript/expo-plugin/withXCode.d.ts.map +1 -0
  325. package/lib/typescript/hash.d.ts +122 -0
  326. package/lib/typescript/hash.d.ts.map +1 -0
  327. package/lib/typescript/hmac.d.ts +66 -0
  328. package/lib/typescript/hmac.d.ts.map +1 -0
  329. package/lib/typescript/index.d.ts +102 -10
  330. package/lib/typescript/index.d.ts.map +1 -1
  331. package/lib/typescript/keys/classes.d.ts +50 -8
  332. package/lib/typescript/keys/classes.d.ts.map +1 -1
  333. package/lib/typescript/keys/generateKeyPair.d.ts +5 -0
  334. package/lib/typescript/keys/generateKeyPair.d.ts.map +1 -1
  335. package/lib/typescript/keys/index.d.ts +22 -2
  336. package/lib/typescript/keys/index.d.ts.map +1 -1
  337. package/lib/typescript/keys/publicCipher.d.ts +20 -0
  338. package/lib/typescript/keys/publicCipher.d.ts.map +1 -0
  339. package/lib/typescript/keys/signVerify.d.ts +28 -0
  340. package/lib/typescript/keys/signVerify.d.ts.map +1 -1
  341. package/lib/typescript/keys/utils.d.ts +3 -1
  342. package/lib/typescript/keys/utils.d.ts.map +1 -1
  343. package/lib/typescript/pbkdf2.d.ts +1 -1
  344. package/lib/typescript/pbkdf2.d.ts.map +1 -1
  345. package/lib/typescript/random.d.ts +6 -0
  346. package/lib/typescript/random.d.ts.map +1 -1
  347. package/lib/typescript/rsa.d.ts +19 -0
  348. package/lib/typescript/rsa.d.ts.map +1 -0
  349. package/lib/typescript/specs/blake3.nitro.d.ts +15 -0
  350. package/lib/typescript/specs/blake3.nitro.d.ts.map +1 -0
  351. package/lib/typescript/specs/cipher.nitro.d.ts +29 -0
  352. package/lib/typescript/specs/cipher.nitro.d.ts.map +1 -0
  353. package/lib/typescript/specs/ecKeyPair.nitro.d.ts +20 -0
  354. package/lib/typescript/specs/ecKeyPair.nitro.d.ts.map +1 -0
  355. package/lib/typescript/specs/edKeyPair.nitro.d.ts +1 -0
  356. package/lib/typescript/specs/edKeyPair.nitro.d.ts.map +1 -1
  357. package/lib/typescript/specs/hash.nitro.d.ts +13 -0
  358. package/lib/typescript/specs/hash.nitro.d.ts.map +1 -0
  359. package/lib/typescript/specs/hmac.nitro.d.ts +10 -0
  360. package/lib/typescript/specs/hmac.nitro.d.ts.map +1 -0
  361. package/lib/typescript/specs/keyObjectHandle.nitro.d.ts +1 -1
  362. package/lib/typescript/specs/keyObjectHandle.nitro.d.ts.map +1 -1
  363. package/lib/typescript/specs/rsaCipher.nitro.d.ts +44 -0
  364. package/lib/typescript/specs/rsaCipher.nitro.d.ts.map +1 -0
  365. package/lib/typescript/specs/rsaKeyPair.nitro.d.ts +20 -0
  366. package/lib/typescript/specs/rsaKeyPair.nitro.d.ts.map +1 -0
  367. package/lib/typescript/specs/sign.nitro.d.ts +19 -0
  368. package/lib/typescript/specs/sign.nitro.d.ts.map +1 -0
  369. package/lib/typescript/subtle.d.ts +17 -0
  370. package/lib/typescript/subtle.d.ts.map +1 -0
  371. package/lib/typescript/utils/cipher.d.ts +7 -0
  372. package/lib/typescript/utils/cipher.d.ts.map +1 -0
  373. package/lib/typescript/utils/conversion.d.ts +1 -0
  374. package/lib/typescript/utils/conversion.d.ts.map +1 -1
  375. package/lib/typescript/utils/hashnames.d.ts +3 -1
  376. package/lib/typescript/utils/hashnames.d.ts.map +1 -1
  377. package/lib/typescript/utils/index.d.ts +1 -0
  378. package/lib/typescript/utils/index.d.ts.map +1 -1
  379. package/lib/typescript/utils/noble.d.ts +19 -0
  380. package/lib/typescript/utils/noble.d.ts.map +1 -0
  381. package/lib/typescript/utils/types.d.ts +125 -23
  382. package/lib/typescript/utils/types.d.ts.map +1 -1
  383. package/lib/typescript/utils/validation.d.ts +5 -0
  384. package/lib/typescript/utils/validation.d.ts.map +1 -1
  385. package/nitrogen/generated/.gitattributes +1 -0
  386. package/nitrogen/generated/android/QuickCrypto+autolinking.cmake +30 -1
  387. package/nitrogen/generated/android/QuickCrypto+autolinking.gradle +1 -1
  388. package/nitrogen/generated/android/QuickCryptoOnLoad.cpp +115 -1
  389. package/nitrogen/generated/android/QuickCryptoOnLoad.hpp +1 -1
  390. package/nitrogen/generated/android/kotlin/com/margelo/nitro/crypto/QuickCryptoOnLoad.kt +35 -0
  391. package/nitrogen/generated/ios/QuickCrypto+autolinking.rb +3 -1
  392. package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.cpp +1 -1
  393. package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Bridge.hpp +1 -1
  394. package/nitrogen/generated/ios/QuickCrypto-Swift-Cxx-Umbrella.hpp +3 -3
  395. package/nitrogen/generated/ios/QuickCryptoAutolinking.mm +111 -1
  396. package/nitrogen/generated/ios/QuickCryptoAutolinking.swift +1 -1
  397. package/nitrogen/generated/shared/c++/AsymmetricKeyType.hpp +104 -0
  398. package/nitrogen/generated/shared/c++/CipherArgs.hpp +86 -0
  399. package/nitrogen/generated/shared/c++/HybridBlake3Spec.cpp +28 -0
  400. package/nitrogen/generated/shared/c++/HybridBlake3Spec.hpp +76 -0
  401. package/nitrogen/generated/shared/c++/HybridCipherFactorySpec.cpp +21 -0
  402. package/nitrogen/generated/shared/c++/HybridCipherFactorySpec.hpp +67 -0
  403. package/nitrogen/generated/shared/c++/HybridCipherSpec.cpp +28 -0
  404. package/nitrogen/generated/shared/c++/HybridCipherSpec.hpp +76 -0
  405. package/nitrogen/generated/shared/c++/HybridEcKeyPairSpec.cpp +29 -0
  406. package/nitrogen/generated/shared/c++/HybridEcKeyPairSpec.hpp +77 -0
  407. package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.cpp +2 -1
  408. package/nitrogen/generated/shared/c++/HybridEdKeyPairSpec.hpp +5 -4
  409. package/nitrogen/generated/shared/c++/HybridHashSpec.cpp +26 -0
  410. package/nitrogen/generated/shared/c++/HybridHashSpec.hpp +75 -0
  411. package/nitrogen/generated/shared/c++/HybridHmacSpec.cpp +23 -0
  412. package/nitrogen/generated/shared/c++/HybridHmacSpec.hpp +66 -0
  413. package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.cpp +1 -1
  414. package/nitrogen/generated/shared/c++/HybridKeyObjectHandleSpec.hpp +8 -8
  415. package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.cpp +1 -1
  416. package/nitrogen/generated/shared/c++/HybridPbkdf2Spec.hpp +3 -3
  417. package/nitrogen/generated/shared/c++/HybridRandomSpec.cpp +1 -1
  418. package/nitrogen/generated/shared/c++/HybridRandomSpec.hpp +3 -3
  419. package/nitrogen/generated/shared/c++/HybridRsaCipherSpec.cpp +24 -0
  420. package/nitrogen/generated/shared/c++/HybridRsaCipherSpec.hpp +72 -0
  421. package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.cpp +29 -0
  422. package/nitrogen/generated/shared/c++/HybridRsaKeyPairSpec.hpp +77 -0
  423. package/nitrogen/generated/shared/c++/HybridSignHandleSpec.cpp +23 -0
  424. package/nitrogen/generated/shared/c++/HybridSignHandleSpec.hpp +71 -0
  425. package/nitrogen/generated/shared/c++/HybridVerifyHandleSpec.cpp +23 -0
  426. package/nitrogen/generated/shared/c++/HybridVerifyHandleSpec.hpp +71 -0
  427. package/nitrogen/generated/shared/c++/JWK.hpp +17 -18
  428. package/nitrogen/generated/shared/c++/JWKkty.hpp +12 -14
  429. package/nitrogen/generated/shared/c++/JWKuse.hpp +8 -10
  430. package/nitrogen/generated/shared/c++/KFormatType.hpp +14 -16
  431. package/nitrogen/generated/shared/c++/KeyDetail.hpp +6 -7
  432. package/nitrogen/generated/shared/c++/KeyEncoding.hpp +15 -17
  433. package/nitrogen/generated/shared/c++/KeyObject.hpp +67 -0
  434. package/nitrogen/generated/shared/c++/KeyType.hpp +11 -13
  435. package/nitrogen/generated/shared/c++/KeyUsage.hpp +38 -24
  436. package/nitrogen/generated/shared/c++/NamedCurve.hpp +10 -12
  437. package/package.json +28 -23
  438. package/src/blake3.ts +123 -0
  439. package/src/cipher.ts +335 -0
  440. package/src/constants.ts +32 -0
  441. package/src/ec.ts +657 -0
  442. package/src/ed.ts +297 -13
  443. package/src/expo-plugin/@types.ts +7 -0
  444. package/src/expo-plugin/withRNQC.ts +23 -0
  445. package/src/expo-plugin/withSodiumAndroid.ts +24 -0
  446. package/src/expo-plugin/withSodiumIos.ts +30 -0
  447. package/src/expo-plugin/withXCode.ts +55 -0
  448. package/src/hash.ts +274 -0
  449. package/src/hmac.ts +135 -0
  450. package/src/index.ts +20 -20
  451. package/src/keys/classes.ts +148 -55
  452. package/src/keys/generateKeyPair.ts +177 -134
  453. package/src/keys/index.ts +226 -14
  454. package/src/keys/publicCipher.ts +229 -0
  455. package/src/keys/signVerify.ts +239 -39
  456. package/src/keys/utils.ts +24 -18
  457. package/src/pbkdf2.ts +1 -1
  458. package/src/random.ts +7 -0
  459. package/src/rsa.ts +310 -0
  460. package/src/specs/blake3.nitro.ts +12 -0
  461. package/src/specs/cipher.nitro.ts +25 -0
  462. package/src/specs/ecKeyPair.nitro.ts +38 -0
  463. package/src/specs/edKeyPair.nitro.ts +2 -0
  464. package/src/specs/hash.nitro.ts +10 -0
  465. package/src/specs/hmac.nitro.ts +7 -0
  466. package/src/specs/keyObjectHandle.nitro.ts +1 -1
  467. package/src/specs/rsaCipher.nitro.ts +65 -0
  468. package/src/specs/rsaKeyPair.nitro.ts +33 -0
  469. package/src/specs/sign.nitro.ts +31 -0
  470. package/src/subtle.ts +1436 -0
  471. package/src/utils/cipher.ts +60 -0
  472. package/src/utils/conversion.ts +33 -4
  473. package/src/utils/hashnames.ts +4 -2
  474. package/src/utils/index.ts +1 -0
  475. package/src/utils/noble.ts +85 -0
  476. package/src/utils/types.ts +209 -29
  477. package/src/utils/validation.ts +96 -1
  478. package/lib/module/package.json +0 -1
  479. package/nitrogen/generated/android/QuickCryptoOnLoad.kt +0 -1
  480. package/nitrogen/generated/shared/c++/CFRGKeyPairType.hpp +0 -86
@@ -0,0 +1,108 @@
1
+ #pragma once
2
+
3
+ #include <cstring>
4
+ #include <memory>
5
+ #include <openssl/dsa.h>
6
+ #include <openssl/ec.h>
7
+ #include <openssl/ecdsa.h>
8
+ #include <openssl/evp.h>
9
+ #include <string>
10
+
11
+ namespace margelo::nitro::crypto {
12
+
13
+ enum DSASigEnc {
14
+ kSigEncDER = 0,
15
+ kSigEncP1363 = 1,
16
+ };
17
+
18
+ inline const EVP_MD* getDigestByName(const std::string& algorithm) {
19
+ if (algorithm == "SHA1" || algorithm == "sha1" || algorithm == "SHA-1" || algorithm == "sha-1") {
20
+ return EVP_sha1();
21
+ } else if (algorithm == "SHA224" || algorithm == "sha224" || algorithm == "SHA-224" || algorithm == "sha-224") {
22
+ return EVP_sha224();
23
+ } else if (algorithm == "SHA256" || algorithm == "sha256" || algorithm == "SHA-256" || algorithm == "sha-256") {
24
+ return EVP_sha256();
25
+ } else if (algorithm == "SHA384" || algorithm == "sha384" || algorithm == "SHA-384" || algorithm == "sha-384") {
26
+ return EVP_sha384();
27
+ } else if (algorithm == "SHA512" || algorithm == "sha512" || algorithm == "SHA-512" || algorithm == "sha-512") {
28
+ return EVP_sha512();
29
+ } else if (algorithm == "SHA3-224" || algorithm == "sha3-224") {
30
+ return EVP_sha3_224();
31
+ } else if (algorithm == "SHA3-256" || algorithm == "sha3-256") {
32
+ return EVP_sha3_256();
33
+ } else if (algorithm == "SHA3-384" || algorithm == "sha3-384") {
34
+ return EVP_sha3_384();
35
+ } else if (algorithm == "SHA3-512" || algorithm == "sha3-512") {
36
+ return EVP_sha3_512();
37
+ }
38
+ throw std::runtime_error("Unsupported hash algorithm: " + algorithm);
39
+ }
40
+
41
+ inline unsigned int getBytesOfRS(EVP_PKEY* pkey) {
42
+ int bits;
43
+ int base_id = EVP_PKEY_base_id(pkey);
44
+
45
+ if (base_id == EVP_PKEY_DSA) {
46
+ const DSA* dsa_key = EVP_PKEY_get0_DSA(pkey);
47
+ bits = BN_num_bits(DSA_get0_q(dsa_key));
48
+ } else if (base_id == EVP_PKEY_EC) {
49
+ const EC_KEY* ec_key = EVP_PKEY_get0_EC_KEY(pkey);
50
+ const EC_GROUP* ec_group = EC_KEY_get0_group(ec_key);
51
+ bits = EC_GROUP_order_bits(ec_group);
52
+ } else {
53
+ return 0;
54
+ }
55
+
56
+ return (bits + 7) / 8;
57
+ }
58
+
59
+ inline bool convertSignatureToP1363(const unsigned char* sig_data, size_t sig_len, unsigned char* out, size_t n) {
60
+ ECDSA_SIG* asn1_sig = d2i_ECDSA_SIG(nullptr, &sig_data, sig_len);
61
+ if (!asn1_sig)
62
+ return false;
63
+
64
+ const BIGNUM* pr = ECDSA_SIG_get0_r(asn1_sig);
65
+ const BIGNUM* ps = ECDSA_SIG_get0_s(asn1_sig);
66
+
67
+ bool success = BN_bn2binpad(pr, out, static_cast<int>(n)) > 0 && BN_bn2binpad(ps, out + n, static_cast<int>(n)) > 0;
68
+ ECDSA_SIG_free(asn1_sig);
69
+ return success;
70
+ }
71
+
72
+ inline std::unique_ptr<uint8_t[]> convertSignatureToDER(const unsigned char* sig_data, size_t sig_len, size_t n, size_t* out_len) {
73
+ if (sig_len != 2 * n) {
74
+ return nullptr;
75
+ }
76
+
77
+ ECDSA_SIG* asn1_sig = ECDSA_SIG_new();
78
+ if (!asn1_sig)
79
+ return nullptr;
80
+
81
+ BIGNUM* r = BN_bin2bn(sig_data, static_cast<int>(n), nullptr);
82
+ BIGNUM* s = BN_bin2bn(sig_data + n, static_cast<int>(n), nullptr);
83
+
84
+ if (!r || !s || !ECDSA_SIG_set0(asn1_sig, r, s)) {
85
+ if (r)
86
+ BN_free(r);
87
+ if (s)
88
+ BN_free(s);
89
+ ECDSA_SIG_free(asn1_sig);
90
+ return nullptr;
91
+ }
92
+
93
+ int der_len = i2d_ECDSA_SIG(asn1_sig, nullptr);
94
+ if (der_len <= 0) {
95
+ ECDSA_SIG_free(asn1_sig);
96
+ return nullptr;
97
+ }
98
+
99
+ auto der_buf = std::make_unique<uint8_t[]>(der_len);
100
+ unsigned char* der_ptr = der_buf.get();
101
+ i2d_ECDSA_SIG(asn1_sig, &der_ptr);
102
+
103
+ ECDSA_SIG_free(asn1_sig);
104
+ *out_len = der_len;
105
+ return der_buf;
106
+ }
107
+
108
+ } // namespace margelo::nitro::crypto
@@ -0,0 +1,68 @@
1
+ #include <utility>
2
+
3
+ // Windows 8+ does not like abort() in Release mode
4
+ #ifdef _WIN32
5
+ #define ABORT_NO_BACKTRACE() _exit(134)
6
+ #else
7
+ #define ABORT_NO_BACKTRACE() abort()
8
+ #endif
9
+
10
+ struct AssertionInfo {
11
+ const char* file_line; // filename:line
12
+ const char* message;
13
+ const char* function;
14
+ };
15
+
16
+ inline void Abort() {
17
+ // DumpBacktrace(stderr);
18
+ fflush(stderr);
19
+ ABORT_NO_BACKTRACE();
20
+ }
21
+
22
+ inline void Assert(const AssertionInfo& info) {
23
+ // std::string name = GetHumanReadableProcessName();
24
+
25
+ fprintf(stderr, "%s:%s%s Assertion `%s' failed.\n", info.file_line, info.function, *info.function ? ":" : "", info.message);
26
+ fflush(stderr);
27
+
28
+ Abort();
29
+ }
30
+
31
+ // Macros stolen from Node
32
+ #define ERROR_AND_ABORT(expr) \
33
+ do { \
34
+ /* Make sure that this struct does not end up in inline code, but */ \
35
+ /* rather in a read-only data section when modifying this code. */ \
36
+ static const AssertionInfo args = {__FILE__ ":" STRINGIFY(__LINE__), #expr, PRETTY_FUNCTION_NAME}; \
37
+ Assert(args); \
38
+ } while (0)
39
+
40
+ #ifdef __GNUC__
41
+ #define LIKELY(expr) __builtin_expect(!!(expr), 1)
42
+ #define UNLIKELY(expr) __builtin_expect(!!(expr), 0)
43
+ #define PRETTY_FUNCTION_NAME __PRETTY_FUNCTION__
44
+ #else
45
+ #define LIKELY(expr) expr
46
+ #define UNLIKELY(expr) expr
47
+ #define PRETTY_FUNCTION_NAME ""
48
+ #endif
49
+
50
+ #define STRINGIFY_(x) #x
51
+ #define STRINGIFY(x) STRINGIFY_(x)
52
+
53
+ #define CHECK(expr) \
54
+ do { \
55
+ if (UNLIKELY(!(expr))) { \
56
+ ERROR_AND_ABORT(expr); \
57
+ } \
58
+ } while (0)
59
+
60
+ #define CHECK_EQ(a, b) CHECK((a) == (b))
61
+ #define CHECK_GE(a, b) CHECK((a) >= (b))
62
+ #define CHECK_GT(a, b) CHECK((a) > (b))
63
+ #define CHECK_LE(a, b) CHECK((a) <= (b))
64
+ #define CHECK_LT(a, b) CHECK((a) < (b))
65
+ #define CHECK_NE(a, b) CHECK((a) != (b))
66
+ #define CHECK_NULL(val) CHECK((val) == nullptr)
67
+ #define CHECK_NOT_NULL(val) CHECK((val) != nullptr)
68
+ #define CHECK_IMPLIES(a, b) CHECK(!(a) || (b))
@@ -1,16 +1,49 @@
1
+ #pragma once
2
+
3
+ #include <algorithm>
4
+ #include <cctype>
1
5
  #include <limits>
6
+ #include <openssl/err.h>
7
+ #include <string>
2
8
 
9
+ #include "Macros.hpp"
3
10
  #include <NitroModules/ArrayBuffer.hpp>
4
11
 
12
+ namespace margelo::nitro::crypto {
13
+
14
+ // Function to get the last OpenSSL error message and clear the error stack
15
+ inline std::string getOpenSSLError() {
16
+ unsigned long errCode = ERR_get_error();
17
+ if (errCode == 0) {
18
+ return "";
19
+ }
20
+ char errStr[256];
21
+ ERR_error_string_n(errCode, errStr, sizeof(errStr));
22
+ // Clear any remaining errors from the error stack to prevent pollution
23
+ ERR_clear_error();
24
+ return std::string(errStr);
25
+ }
26
+
27
+ // Function to clear OpenSSL error stack without getting error message
28
+ inline void clearOpenSSLErrors() {
29
+ ERR_clear_error();
30
+ }
31
+
5
32
  // copy a JSArrayBuffer that we do not own into a NativeArrayBuffer that we do own
6
- inline std::shared_ptr<margelo::nitro::NativeArrayBuffer>
7
- ToNativeArrayBuffer(const std::shared_ptr<margelo::nitro::ArrayBuffer>& buffer) {
33
+ inline std::shared_ptr<margelo::nitro::NativeArrayBuffer> ToNativeArrayBuffer(const std::shared_ptr<margelo::nitro::ArrayBuffer>& buffer) {
8
34
  size_t bufferSize = buffer.get()->size();
9
35
  uint8_t* data = new uint8_t[bufferSize];
10
36
  memcpy(data, buffer.get()->data(), bufferSize);
11
37
  return std::make_shared<margelo::nitro::NativeArrayBuffer>(data, bufferSize, [=]() { delete[] data; });
12
38
  }
13
39
 
40
+ inline std::shared_ptr<margelo::nitro::NativeArrayBuffer> ToNativeArrayBuffer(std::string str) {
41
+ size_t size = str.size();
42
+ uint8_t* data = new uint8_t[size];
43
+ memcpy(data, str.data(), size);
44
+ return std::make_shared<margelo::nitro::NativeArrayBuffer>(data, size, [=]() { delete[] data; });
45
+ }
46
+
14
47
  inline bool CheckIsUint32(double value) {
15
48
  return (value >= std::numeric_limits<uint32_t>::lowest() && value <= std::numeric_limits<uint32_t>::max());
16
49
  }
@@ -18,3 +51,11 @@ inline bool CheckIsUint32(double value) {
18
51
  inline bool CheckIsInt32(double value) {
19
52
  return (value >= std::numeric_limits<int32_t>::lowest() && value <= std::numeric_limits<int32_t>::max());
20
53
  }
54
+
55
+ // Function to convert a string to lowercase
56
+ inline std::string toLower(std::string s) {
57
+ std::transform(s.begin(), s.end(), s.begin(), [](unsigned char c) { return static_cast<char>(std::tolower(c)); });
58
+ return s;
59
+ }
60
+
61
+ } // namespace margelo::nitro::crypto
@@ -0,0 +1,309 @@
1
+ /*
2
+ base64.h
3
+
4
+ base64 encoding and decoding with C++.
5
+ More information at
6
+ https://renenyffenegger.ch/notes/development/Base64/Encoding-and-decoding-base-64-with-cpp
7
+
8
+ Version: 2.rc.09 (release candidate)
9
+
10
+ Copyright (C) 2004-2017, 2020-2022 René Nyffenegger
11
+
12
+ This source code is provided 'as-is', without any express or implied
13
+ warranty. In no event will the author be held liable for any damages
14
+ arising from the use of this software.
15
+
16
+ Permission is granted to anyone to use this software for any purpose,
17
+ including commercial applications, and to alter it and redistribute it
18
+ freely, subject to the following restrictions:
19
+
20
+ 1. The origin of this source code must not be misrepresented; you must not
21
+ claim that you wrote the original source code. If you use this source code
22
+ in a product, an acknowledgment in the product documentation would be
23
+ appreciated but is not required.
24
+
25
+ 2. Altered source versions must be plainly marked as such, and must not be
26
+ misrepresented as being the original source code.
27
+
28
+ 3. This notice may not be removed or altered from any source distribution.
29
+
30
+ René Nyffenegger rene.nyffenegger@adp-gmbh.ch
31
+ */
32
+ /**
33
+ * Copyright (C) 2023 Kevin Heifner
34
+ *
35
+ * Modified to be header only.
36
+ * Templated for std::string, std::string_view, std::vector<char> and other char containers.
37
+ */
38
+
39
+ #pragma once
40
+
41
+ #include <algorithm>
42
+ #include <stdexcept>
43
+ #include <string>
44
+ #include <string_view>
45
+
46
+ // Interface:
47
+ // Defaults allow for use:
48
+ // std::string s = "foobar";
49
+ // std::string encoded = base64_encode(s);
50
+ // std::string_view sv = "foobar";
51
+ // std::string encoded = base64_encode(sv);
52
+ // std::vector<char> vc = {'f', 'o', 'o'};
53
+ // std::string encoded = base64_encode(vc);
54
+ //
55
+ // Also allows for user provided char containers and specified return types:
56
+ // std::string s = "foobar";
57
+ // std::vector<char> encoded = base64_encode<std::vector<char>>(s);
58
+
59
+ template <typename RetString = std::string, typename String = std::string>
60
+ RetString base64_encode(const String& s, bool url = false);
61
+
62
+ template <typename RetString = std::string, typename String = std::string>
63
+ RetString base64_encode_pem(const String& s);
64
+
65
+ template <typename RetString = std::string, typename String = std::string>
66
+ RetString base64_encode_mime(const String& s);
67
+
68
+ template <typename RetString = std::string, typename String = std::string>
69
+ RetString base64_decode(const String& s, bool remove_linebreaks = false);
70
+
71
+ template <typename RetString = std::string>
72
+ RetString base64_encode(const unsigned char* s, size_t len, bool url = false);
73
+
74
+ namespace detail {
75
+ //
76
+ // Depending on the url parameter in base64_chars, one of
77
+ // two sets of base64 characters needs to be chosen.
78
+ // They differ in their last two characters.
79
+ //
80
+ constexpr const char* to_base64_chars[2] = {"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
81
+ "abcdefghijklmnopqrstuvwxyz"
82
+ "0123456789"
83
+ "+/",
84
+
85
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
86
+ "abcdefghijklmnopqrstuvwxyz"
87
+ "0123456789"
88
+ "-_"};
89
+
90
+ constexpr unsigned char from_base64_chars[256] = {
91
+ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
92
+ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 62, 64, 62, 64, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 64, 64, 64, 64, 64,
93
+ 64, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 64, 64, 64, 64, 63,
94
+ 64, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 64, 64, 64, 64,
95
+ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
96
+ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
97
+ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
98
+ 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64};
99
+
100
+ inline unsigned int pos_of_char(const unsigned char chr) {
101
+ //
102
+ // Return the position of chr within base64_encode()
103
+ //
104
+
105
+ if (from_base64_chars[chr] != 64)
106
+ return from_base64_chars[chr];
107
+
108
+ //
109
+ // 2020-10-23: Throw std::exception rather than const char*
110
+ //(Pablo Martin-Gomez, https://github.com/Bouska)
111
+ //
112
+ throw std::runtime_error("Input is not valid base64-encoded data.");
113
+ }
114
+
115
+ template <typename RetString, typename String>
116
+ inline RetString insert_linebreaks(const String& str, size_t distance) {
117
+ //
118
+ // Provided by https://github.com/JomaCorpFX, adapted by Rene & Kevin
119
+ //
120
+ if (!str.size()) {
121
+ return RetString{};
122
+ }
123
+
124
+ if (distance < str.size()) {
125
+ size_t pos = distance;
126
+ String s{str};
127
+ while (pos < s.size()) {
128
+ s.insert(pos, "\n");
129
+ pos += distance + 1;
130
+ }
131
+ return s;
132
+ } else {
133
+ return str;
134
+ }
135
+ }
136
+
137
+ template <typename RetString, typename String, unsigned int line_length>
138
+ inline RetString encode_with_line_breaks(String s) {
139
+ return insert_linebreaks<RetString, String>(base64_encode(s, false), line_length);
140
+ }
141
+
142
+ template <typename RetString, typename String>
143
+ inline RetString encode_pem(String s) {
144
+ return encode_with_line_breaks<RetString, String, 64>(s);
145
+ }
146
+
147
+ template <typename RetString, typename String>
148
+ inline RetString encode_mime(String s) {
149
+ return encode_with_line_breaks<RetString, String, 76>(s);
150
+ }
151
+
152
+ template <typename RetString, typename String>
153
+ inline RetString encode(String s, bool url) {
154
+ return base64_encode<RetString>(reinterpret_cast<const unsigned char*>(s.data()), s.size(), url);
155
+ }
156
+
157
+ } // namespace detail
158
+
159
+ template <typename RetString>
160
+ inline RetString base64_encode(const unsigned char* bytes_to_encode, size_t in_len, bool url) {
161
+ size_t len_encoded = (in_len + 2) / 3 * 4;
162
+
163
+ const unsigned char trailing_char = '=';
164
+
165
+ //
166
+ // Choose set of base64 characters. They differ
167
+ // for the last two positions, depending on the url
168
+ // parameter.
169
+ // A bool (as is the parameter url) is guaranteed
170
+ // to evaluate to either 0 or 1 in C++ therefore,
171
+ // the correct character set is chosen by subscripting
172
+ // base64_chars with url.
173
+ //
174
+ const char* base64_chars_ = detail::to_base64_chars[url];
175
+
176
+ RetString ret;
177
+ ret.reserve(len_encoded);
178
+
179
+ unsigned int pos = 0;
180
+
181
+ while (pos < in_len) {
182
+ ret.push_back(base64_chars_[(bytes_to_encode[pos + 0] & 0xfc) >> 2]);
183
+
184
+ if (pos + 1 < in_len) {
185
+ ret.push_back(base64_chars_[((bytes_to_encode[pos + 0] & 0x03) << 4) + ((bytes_to_encode[pos + 1] & 0xf0) >> 4)]);
186
+
187
+ if (pos + 2 < in_len) {
188
+ ret.push_back(base64_chars_[((bytes_to_encode[pos + 1] & 0x0f) << 2) + ((bytes_to_encode[pos + 2] & 0xc0) >> 6)]);
189
+ ret.push_back(base64_chars_[bytes_to_encode[pos + 2] & 0x3f]);
190
+ } else {
191
+ ret.push_back(base64_chars_[(bytes_to_encode[pos + 1] & 0x0f) << 2]);
192
+ if (!url)
193
+ ret.push_back(trailing_char);
194
+ }
195
+ } else {
196
+ ret.push_back(base64_chars_[(bytes_to_encode[pos + 0] & 0x03) << 4]);
197
+ if (!url)
198
+ ret.push_back(trailing_char);
199
+ if (!url)
200
+ ret.push_back(trailing_char);
201
+ }
202
+
203
+ pos += 3;
204
+ }
205
+
206
+ return ret;
207
+ }
208
+
209
+ namespace detail {
210
+
211
+ template <typename RetString, typename String>
212
+ inline RetString decode(const String& encoded_string, bool remove_linebreaks) {
213
+ static_assert(!std::is_same<RetString, std::string_view>::value, "RetString should not be std::string_view");
214
+
215
+ //
216
+ // decode(…) is templated so that it can be used with String = const std::string&
217
+ // or std::string_view (requires at least C++17)
218
+ //
219
+
220
+ if (encoded_string.empty())
221
+ return RetString{};
222
+
223
+ if (remove_linebreaks) {
224
+ String copy{encoded_string};
225
+
226
+ copy.erase(std::remove(copy.begin(), copy.end(), '\n'), copy.end());
227
+
228
+ return base64_decode<RetString, String>(copy, false);
229
+ }
230
+
231
+ size_t length_of_string = encoded_string.size();
232
+ size_t pos = 0;
233
+
234
+ //
235
+ // The approximate length (bytes) of the decoded string might be one or
236
+ // two bytes smaller, depending on the amount of trailing equal signs
237
+ // in the encoded string. This approximation is needed to reserve
238
+ // enough space in the string to be returned.
239
+ //
240
+ size_t approx_length_of_decoded_string = length_of_string / 4 * 3;
241
+ RetString ret;
242
+ ret.reserve(approx_length_of_decoded_string);
243
+
244
+ while (pos < length_of_string && encoded_string.at(pos) != '=') {
245
+ //
246
+ // Iterate over encoded input string in chunks. The size of all
247
+ // chunks except the last one is 4 bytes.
248
+ //
249
+ // The last chunk might be padded with equal signs
250
+ // in order to make it 4 bytes in size as well, but this
251
+ // is not required as per RFC 2045.
252
+ //
253
+ // All chunks except the last one produce three output bytes.
254
+ //
255
+ // The last chunk produces at least one and up to three bytes.
256
+ //
257
+
258
+ size_t pos_of_char_1 = pos_of_char(encoded_string.at(pos + 1));
259
+
260
+ //
261
+ // Emit the first output byte that is produced in each chunk:
262
+ //
263
+ ret.push_back(
264
+ static_cast<typename RetString::value_type>(((pos_of_char(encoded_string.at(pos + 0))) << 2) + ((pos_of_char_1 & 0x30) >> 4)));
265
+
266
+ if ((pos + 2 < length_of_string) &&
267
+ // Check for data that is not padded with equal signs (which is allowed by RFC 2045)
268
+ encoded_string.at(pos + 2) != '=') {
269
+ //
270
+ // Emit a chunk's second byte (which might not be produced in the last chunk).
271
+ //
272
+ unsigned int pos_of_char_2 = pos_of_char(encoded_string.at(pos + 2));
273
+ ret.push_back(static_cast<typename RetString::value_type>(((pos_of_char_1 & 0x0f) << 4) + ((pos_of_char_2 & 0x3c) >> 2)));
274
+
275
+ if ((pos + 3 < length_of_string) && encoded_string.at(pos + 3) != '=') {
276
+ //
277
+ // Emit a chunk's third byte (which might not be produced in the last chunk).
278
+ //
279
+ ret.push_back(static_cast<typename RetString::value_type>(((pos_of_char_2 & 0x03) << 6) + pos_of_char(encoded_string.at(pos + 3))));
280
+ }
281
+ }
282
+
283
+ pos += 4;
284
+ }
285
+
286
+ return ret;
287
+ }
288
+
289
+ } // namespace detail
290
+
291
+ template <typename RetString, typename String>
292
+ inline RetString base64_decode(const String& s, bool remove_linebreaks) {
293
+ return detail::decode<RetString, String>(s, remove_linebreaks);
294
+ }
295
+
296
+ template <typename RetString, typename String>
297
+ inline RetString base64_encode(const String& s, bool url) {
298
+ return detail::encode<RetString, String>(s, url);
299
+ }
300
+
301
+ template <typename RetString, typename String>
302
+ inline RetString base64_encode_pem(const String& s) {
303
+ return detail::encode_pem<RetString, String>(s);
304
+ }
305
+
306
+ template <typename RetString, typename String>
307
+ inline RetString base64_encode_mime(const String& s) {
308
+ return detail::encode_mime<RetString, String>(s);
309
+ }
@@ -0,0 +1,2 @@
1
+ [target.wasm32-wasip1]
2
+ runner = "wasmtime"
@@ -0,0 +1,2 @@
1
+ # CMakeLists.txt whitespace fixups
2
+ 3e14f865d30271c74fc68d417af488ea91b66d48
@@ -0,0 +1,38 @@
1
+ #! /usr/bin/env python3
2
+
3
+ from pathlib import Path
4
+ import platform
5
+ import shutil
6
+ import subprocess
7
+ import sys
8
+
9
+ ROOT = Path(__file__).parent.parent.parent
10
+ RUST_TARGET = sys.argv[1]
11
+
12
+ subprocess.run(
13
+ ["cargo", "build", "--target", sys.argv[1], "--release"], cwd=ROOT / "b3sum"
14
+ )
15
+
16
+ if platform.system() == "Windows":
17
+ original_exe_name = "b3sum.exe"
18
+ else:
19
+ original_exe_name = "b3sum"
20
+
21
+ if platform.system() == "Windows":
22
+ new_exe_name = "b3sum_windows_x64_bin.exe"
23
+ elif platform.system() == "Darwin":
24
+ new_exe_name = "b3sum_macos_x64_bin"
25
+ elif platform.system() == "Linux":
26
+ new_exe_name = "b3sum_linux_x64_bin"
27
+ else:
28
+ raise RuntimeError("Unexpected platform: " + platform.system())
29
+
30
+ # Copy the built binary so that it has the upload name we want.
31
+ out_dir = ROOT / "b3sum/target" / RUST_TARGET / "release"
32
+ original_exe_path = str(out_dir / original_exe_name)
33
+ new_exe_path = str(out_dir / new_exe_name)
34
+ print("copying", repr(original_exe_path), "to", repr(new_exe_path))
35
+ shutil.copyfile(original_exe_path, new_exe_path)
36
+
37
+ # This lets the subsequent upload step get the filepath.
38
+ print("::set-output name=bin_path::" + new_exe_path)