@twin.org/crypto 0.0.3-next.4 → 0.0.3-next.40

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 (57) hide show
  1. package/README.md +1 -11
  2. package/dist/es/hashes/argon2id.js +38 -0
  3. package/dist/es/hashes/argon2id.js.map +1 -0
  4. package/dist/es/hashes/pbkdf2.js +9 -1
  5. package/dist/es/hashes/pbkdf2.js.map +1 -1
  6. package/dist/es/helpers/integrityHelper.js +67 -0
  7. package/dist/es/helpers/integrityHelper.js.map +1 -0
  8. package/dist/es/index.js +3 -0
  9. package/dist/es/index.js.map +1 -1
  10. package/dist/es/models/integrityAlgorithm.js +21 -0
  11. package/dist/es/models/integrityAlgorithm.js.map +1 -0
  12. package/dist/es/passwords/passwordGenerator.js +70 -12
  13. package/dist/es/passwords/passwordGenerator.js.map +1 -1
  14. package/dist/es/passwords/passwordValidator.js +68 -4
  15. package/dist/es/passwords/passwordValidator.js.map +1 -1
  16. package/dist/types/hashes/argon2id.d.ts +28 -0
  17. package/dist/types/hashes/pbkdf2.d.ts +2 -0
  18. package/dist/types/helpers/integrityHelper.d.ts +26 -0
  19. package/dist/types/index.d.ts +3 -0
  20. package/dist/types/models/integrityAlgorithm.d.ts +21 -0
  21. package/dist/types/passwords/passwordGenerator.d.ts +13 -2
  22. package/dist/types/passwords/passwordValidator.d.ts +34 -2
  23. package/docs/changelog.md +819 -97
  24. package/docs/examples.md +130 -1
  25. package/docs/reference/classes/Argon2id.md +83 -0
  26. package/docs/reference/classes/Bech32.md +4 -4
  27. package/docs/reference/classes/Bip32Path.md +6 -6
  28. package/docs/reference/classes/Bip39.md +16 -16
  29. package/docs/reference/classes/Bip44.md +6 -6
  30. package/docs/reference/classes/Blake2b.md +9 -9
  31. package/docs/reference/classes/Blake3.md +7 -7
  32. package/docs/reference/classes/ChaCha20Poly1305.md +3 -3
  33. package/docs/reference/classes/Ed25519.md +8 -8
  34. package/docs/reference/classes/HmacSha1.md +4 -4
  35. package/docs/reference/classes/HmacSha256.md +9 -9
  36. package/docs/reference/classes/HmacSha512.md +13 -13
  37. package/docs/reference/classes/Hotp.md +2 -2
  38. package/docs/reference/classes/IntegrityHelper.md +85 -0
  39. package/docs/reference/classes/PasswordGenerator.md +41 -5
  40. package/docs/reference/classes/PasswordValidator.md +116 -3
  41. package/docs/reference/classes/Pbkdf2.md +11 -3
  42. package/docs/reference/classes/PemHelper.md +5 -5
  43. package/docs/reference/classes/Secp256k1.md +6 -6
  44. package/docs/reference/classes/Sha1.md +4 -4
  45. package/docs/reference/classes/Sha256.md +9 -9
  46. package/docs/reference/classes/Sha3.md +13 -13
  47. package/docs/reference/classes/Sha512.md +13 -13
  48. package/docs/reference/classes/Slip0010.md +11 -11
  49. package/docs/reference/classes/Totp.md +12 -12
  50. package/docs/reference/classes/X25519.md +3 -3
  51. package/docs/reference/classes/Zip215.md +2 -2
  52. package/docs/reference/index.md +4 -0
  53. package/docs/reference/type-aliases/IntegrityAlgorithm.md +5 -0
  54. package/docs/reference/variables/IntegrityAlgorithm.md +25 -0
  55. package/docs/reference/variables/KeyType.md +2 -2
  56. package/locales/en.json +3 -0
  57. package/package.json +13 -14
package/docs/changelog.md CHANGED
@@ -1,6 +1,728 @@
1
- # @twin.org/crypto - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.3...crypto-v0.0.3-next.4) (2025-11-13)
3
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.39...crypto-v0.0.3-next.40) (2026-05-13)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **crypto:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/core bumped from 0.0.3-next.39 to 0.0.3-next.40
16
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
17
+ * devDependencies
18
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
20
+ * @twin.org/validate-locales bumped from 0.0.3-next.39 to 0.0.3-next.40
21
+
22
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.38...crypto-v0.0.3-next.39) (2026-05-13)
23
+
24
+
25
+ ### Features
26
+
27
+ * improve signatures ([cdd24be](https://github.com/iotaledger/twin-framework/commit/cdd24be6fb898d33955b6f2f93c3ddbd73582269))
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/core bumped from 0.0.3-next.38 to 0.0.3-next.39
35
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
36
+ * devDependencies
37
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
38
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
39
+ * @twin.org/validate-locales bumped from 0.0.3-next.38 to 0.0.3-next.39
40
+
41
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.37...crypto-v0.0.3-next.38) (2026-05-11)
42
+
43
+
44
+ ### Features
45
+
46
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
47
+
48
+
49
+ ### Dependencies
50
+
51
+ * The following workspace dependencies were updated
52
+ * dependencies
53
+ * @twin.org/core bumped from 0.0.3-next.37 to 0.0.3-next.38
54
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
55
+ * devDependencies
56
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
57
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
58
+ * @twin.org/validate-locales bumped from 0.0.3-next.37 to 0.0.3-next.38
59
+
60
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.36...crypto-v0.0.3-next.37) (2026-05-07)
61
+
62
+
63
+ ### Miscellaneous Chores
64
+
65
+ * **crypto:** Synchronize repo versions
66
+
67
+
68
+ ### Dependencies
69
+
70
+ * The following workspace dependencies were updated
71
+ * dependencies
72
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
73
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
74
+ * devDependencies
75
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
76
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
77
+ * @twin.org/validate-locales bumped from 0.0.3-next.36 to 0.0.3-next.37
78
+
79
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.35...crypto-v0.0.3-next.36) (2026-05-07)
80
+
81
+
82
+ ### Miscellaneous Chores
83
+
84
+ * **crypto:** Synchronize repo versions
85
+
86
+
87
+ ### Dependencies
88
+
89
+ * The following workspace dependencies were updated
90
+ * dependencies
91
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
92
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
93
+ * devDependencies
94
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
95
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
96
+ * @twin.org/validate-locales bumped from 0.0.3-next.35 to 0.0.3-next.36
97
+
98
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.34...crypto-v0.0.3-next.35) (2026-05-06)
99
+
100
+
101
+ ### Miscellaneous Chores
102
+
103
+ * **crypto:** Synchronize repo versions
104
+
105
+
106
+ ### Dependencies
107
+
108
+ * The following workspace dependencies were updated
109
+ * dependencies
110
+ * @twin.org/core bumped from 0.0.3-next.34 to 0.0.3-next.35
111
+ * @twin.org/nameof bumped from 0.0.3-next.34 to 0.0.3-next.35
112
+ * devDependencies
113
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
114
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
115
+ * @twin.org/validate-locales bumped from 0.0.3-next.34 to 0.0.3-next.35
116
+
117
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.33...crypto-v0.0.3-next.34) (2026-05-06)
118
+
119
+
120
+ ### Miscellaneous Chores
121
+
122
+ * **crypto:** Synchronize repo versions
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @twin.org/core bumped from 0.0.3-next.33 to 0.0.3-next.34
130
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
131
+ * devDependencies
132
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
133
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
134
+ * @twin.org/validate-locales bumped from 0.0.3-next.33 to 0.0.3-next.34
135
+
136
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.32...crypto-v0.0.3-next.33) (2026-05-05)
137
+
138
+
139
+ ### Miscellaneous Chores
140
+
141
+ * **crypto:** Synchronize repo versions
142
+
143
+
144
+ ### Dependencies
145
+
146
+ * The following workspace dependencies were updated
147
+ * dependencies
148
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
149
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
150
+ * devDependencies
151
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
152
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
153
+ * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
154
+
155
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.31...crypto-v0.0.3-next.32) (2026-04-30)
156
+
157
+
158
+ ### Miscellaneous Chores
159
+
160
+ * **crypto:** Synchronize repo versions
161
+
162
+
163
+ ### Dependencies
164
+
165
+ * The following workspace dependencies were updated
166
+ * dependencies
167
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
168
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
169
+ * devDependencies
170
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
171
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
172
+ * @twin.org/validate-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
173
+
174
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.30...crypto-v0.0.3-next.31) (2026-04-14)
175
+
176
+
177
+ ### Miscellaneous Chores
178
+
179
+ * **crypto:** Synchronize repo versions
180
+
181
+
182
+ ### Dependencies
183
+
184
+ * The following workspace dependencies were updated
185
+ * dependencies
186
+ * @twin.org/core bumped from 0.0.3-next.30 to 0.0.3-next.31
187
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
188
+ * devDependencies
189
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
190
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
191
+ * @twin.org/validate-locales bumped from 0.0.3-next.30 to 0.0.3-next.31
192
+
193
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.29...crypto-v0.0.3-next.30) (2026-04-14)
194
+
195
+
196
+ ### Miscellaneous Chores
197
+
198
+ * **crypto:** Synchronize repo versions
199
+
200
+
201
+ ### Dependencies
202
+
203
+ * The following workspace dependencies were updated
204
+ * dependencies
205
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
206
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
207
+ * devDependencies
208
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
209
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
210
+ * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
211
+
212
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.28...crypto-v0.0.3-next.29) (2026-04-14)
213
+
214
+
215
+ ### Miscellaneous Chores
216
+
217
+ * **crypto:** Synchronize repo versions
218
+
219
+
220
+ ### Dependencies
221
+
222
+ * The following workspace dependencies were updated
223
+ * dependencies
224
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
225
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
226
+ * devDependencies
227
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
228
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
229
+ * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
230
+
231
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.27...crypto-v0.0.3-next.28) (2026-03-27)
232
+
233
+
234
+ ### Miscellaneous Chores
235
+
236
+ * **crypto:** Synchronize repo versions
237
+
238
+
239
+ ### Dependencies
240
+
241
+ * The following workspace dependencies were updated
242
+ * dependencies
243
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
244
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
245
+ * devDependencies
246
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
247
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
248
+ * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
249
+
250
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.26...crypto-v0.0.3-next.27) (2026-03-27)
251
+
252
+
253
+ ### Features
254
+
255
+ * add crypto argon2id ([#255](https://github.com/iotaledger/twin-framework/issues/255)) ([27fe3a7](https://github.com/iotaledger/twin-framework/commit/27fe3a72eeb0f398a278ebb3f1cb9c4dd459743c))
256
+
257
+
258
+ ### Dependencies
259
+
260
+ * The following workspace dependencies were updated
261
+ * dependencies
262
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
263
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
264
+ * devDependencies
265
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
266
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
267
+ * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
268
+
269
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.25...crypto-v0.0.3-next.26) (2026-03-24)
270
+
271
+
272
+ ### Miscellaneous Chores
273
+
274
+ * **crypto:** Synchronize repo versions
275
+
276
+
277
+ ### Dependencies
278
+
279
+ * The following workspace dependencies were updated
280
+ * dependencies
281
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
282
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
283
+ * devDependencies
284
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
285
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
286
+ * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
287
+
288
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.24...crypto-v0.0.3-next.25) (2026-03-23)
289
+
290
+
291
+ ### Miscellaneous Chores
292
+
293
+ * **crypto:** Synchronize repo versions
294
+
295
+
296
+ ### Dependencies
297
+
298
+ * The following workspace dependencies were updated
299
+ * dependencies
300
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
301
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
302
+ * devDependencies
303
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
304
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
305
+ * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
306
+
307
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.23...crypto-v0.0.3-next.24) (2026-03-19)
308
+
309
+
310
+ ### Bug Fixes
311
+
312
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
313
+
314
+
315
+ ### Dependencies
316
+
317
+ * The following workspace dependencies were updated
318
+ * dependencies
319
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
320
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
321
+ * devDependencies
322
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
323
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
324
+ * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
325
+
326
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.22...crypto-v0.0.3-next.23) (2026-03-17)
327
+
328
+
329
+ ### Miscellaneous Chores
330
+
331
+ * **crypto:** Synchronize repo versions
332
+
333
+
334
+ ### Dependencies
335
+
336
+ * The following workspace dependencies were updated
337
+ * dependencies
338
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
339
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
340
+ * devDependencies
341
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
342
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
343
+ * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
344
+
345
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.21...crypto-v0.0.3-next.22) (2026-02-26)
346
+
347
+
348
+ ### Miscellaneous Chores
349
+
350
+ * **crypto:** Synchronize repo versions
351
+
352
+
353
+ ### Dependencies
354
+
355
+ * The following workspace dependencies were updated
356
+ * dependencies
357
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
358
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
359
+ * devDependencies
360
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
361
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
362
+ * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
363
+
364
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.20...crypto-v0.0.3-next.21) (2026-02-26)
365
+
366
+
367
+ ### Features
368
+
369
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
370
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
371
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
372
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
373
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
374
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
375
+ * change method accessibility ([c1b77fc](https://github.com/iotaledger/twin-framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
376
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
377
+ * factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
378
+ * improved password generation and validation ([#232](https://github.com/iotaledger/twin-framework/issues/232)) ([ca4e18f](https://github.com/iotaledger/twin-framework/commit/ca4e18f388b1882cdfb774fc0d0921b8530fac33))
379
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
380
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
381
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
382
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
383
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
384
+
385
+
386
+ ### Bug Fixes
387
+
388
+ * docs ([9df46e0](https://github.com/iotaledger/twin-framework/commit/9df46e0a3940a4d1f479373f58830519262f9590))
389
+ * docs ([67c8887](https://github.com/iotaledger/twin-framework/commit/67c888739448e753106ea067a8703d058e0ddf12))
390
+
391
+
392
+ ### Dependencies
393
+
394
+ * The following workspace dependencies were updated
395
+ * dependencies
396
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
397
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
398
+ * devDependencies
399
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
400
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
401
+ * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
402
+
403
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.19...crypto-v0.0.3-next.20) (2026-02-26)
404
+
405
+
406
+ ### Miscellaneous Chores
407
+
408
+ * **crypto:** Synchronize repo versions
409
+
410
+
411
+ ### Dependencies
412
+
413
+ * The following workspace dependencies were updated
414
+ * dependencies
415
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
416
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
417
+ * devDependencies
418
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
419
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
420
+ * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
421
+
422
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.18...crypto-v0.0.3-next.19) (2026-02-26)
423
+
424
+
425
+ ### Miscellaneous Chores
426
+
427
+ * **crypto:** Synchronize repo versions
428
+
429
+
430
+ ### Dependencies
431
+
432
+ * The following workspace dependencies were updated
433
+ * dependencies
434
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
435
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
436
+ * devDependencies
437
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
438
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
439
+ * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
440
+
441
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.17...crypto-v0.0.3-next.18) (2026-02-23)
442
+
443
+
444
+ ### Miscellaneous Chores
445
+
446
+ * **crypto:** Synchronize repo versions
447
+
448
+
449
+ ### Dependencies
450
+
451
+ * The following workspace dependencies were updated
452
+ * dependencies
453
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
454
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
455
+ * devDependencies
456
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
457
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
458
+ * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
459
+
460
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.16...crypto-v0.0.3-next.17) (2026-02-09)
461
+
462
+
463
+ ### Features
464
+
465
+ * factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
466
+
467
+
468
+ ### Bug Fixes
469
+
470
+ * docs ([9df46e0](https://github.com/iotaledger/twin-framework/commit/9df46e0a3940a4d1f479373f58830519262f9590))
471
+ * docs ([67c8887](https://github.com/iotaledger/twin-framework/commit/67c888739448e753106ea067a8703d058e0ddf12))
472
+
473
+
474
+ ### Dependencies
475
+
476
+ * The following workspace dependencies were updated
477
+ * dependencies
478
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
479
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
480
+ * devDependencies
481
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
482
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
483
+ * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
484
+
485
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.15...crypto-v0.0.3-next.16) (2026-02-06)
486
+
487
+
488
+ ### Features
489
+
490
+ * improved password generation and validation ([#232](https://github.com/iotaledger/twin-framework/issues/232)) ([ca4e18f](https://github.com/iotaledger/twin-framework/commit/ca4e18f388b1882cdfb774fc0d0921b8530fac33))
491
+
492
+
493
+ ### Dependencies
494
+
495
+ * The following workspace dependencies were updated
496
+ * dependencies
497
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
498
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
499
+ * devDependencies
500
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
501
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
502
+ * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
503
+
504
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.14...crypto-v0.0.3-next.15) (2026-01-29)
505
+
506
+
507
+ ### Miscellaneous Chores
508
+
509
+ * **crypto:** Synchronize repo versions
510
+
511
+
512
+ ### Dependencies
513
+
514
+ * The following workspace dependencies were updated
515
+ * dependencies
516
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
517
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
518
+ * devDependencies
519
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
520
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
521
+ * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
522
+
523
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.13...crypto-v0.0.3-next.14) (2026-01-22)
524
+
525
+
526
+ ### Miscellaneous Chores
527
+
528
+ * **crypto:** Synchronize repo versions
529
+
530
+
531
+ ### Dependencies
532
+
533
+ * The following workspace dependencies were updated
534
+ * dependencies
535
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
536
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
537
+ * devDependencies
538
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
539
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
540
+ * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
541
+
542
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.12...crypto-v0.0.3-next.13) (2026-01-08)
543
+
544
+
545
+ ### Miscellaneous Chores
546
+
547
+ * **crypto:** Synchronize repo versions
548
+
549
+
550
+ ### Dependencies
551
+
552
+ * The following workspace dependencies were updated
553
+ * dependencies
554
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
555
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
556
+ * devDependencies
557
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
558
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
559
+ * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
560
+
561
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.11...crypto-v0.0.3-next.12) (2026-01-08)
562
+
563
+
564
+ ### Miscellaneous Chores
565
+
566
+ * **crypto:** Synchronize repo versions
567
+
568
+
569
+ ### Dependencies
570
+
571
+ * The following workspace dependencies were updated
572
+ * dependencies
573
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
574
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
575
+ * devDependencies
576
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
577
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
578
+ * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
579
+
580
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.10...crypto-v0.0.3-next.11) (2026-01-07)
581
+
582
+
583
+ ### Miscellaneous Chores
584
+
585
+ * **crypto:** Synchronize repo versions
586
+
587
+
588
+ ### Dependencies
589
+
590
+ * The following workspace dependencies were updated
591
+ * dependencies
592
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
593
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
594
+ * devDependencies
595
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
596
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
597
+ * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
598
+
599
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.9...crypto-v0.0.3-next.10) (2026-01-07)
600
+
601
+
602
+ ### Miscellaneous Chores
603
+
604
+ * **crypto:** Synchronize repo versions
605
+
606
+
607
+ ### Dependencies
608
+
609
+ * The following workspace dependencies were updated
610
+ * dependencies
611
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
612
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
613
+ * devDependencies
614
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
615
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
616
+ * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
617
+
618
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.8...crypto-v0.0.3-next.9) (2026-01-05)
619
+
620
+
621
+ ### Miscellaneous Chores
622
+
623
+ * **crypto:** Synchronize repo versions
624
+
625
+
626
+ ### Dependencies
627
+
628
+ * The following workspace dependencies were updated
629
+ * dependencies
630
+ * @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
631
+ * @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
632
+ * devDependencies
633
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
634
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
635
+ * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
636
+
637
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.7...crypto-v0.0.3-next.8) (2025-11-26)
638
+
639
+
640
+ ### Miscellaneous Chores
641
+
642
+ * **crypto:** Synchronize repo versions
643
+
644
+
645
+ ### Dependencies
646
+
647
+ * The following workspace dependencies were updated
648
+ * dependencies
649
+ * @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
650
+ * @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
651
+ * devDependencies
652
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
653
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
654
+ * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
655
+
656
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.6...crypto-v0.0.3-next.7) (2025-11-25)
657
+
658
+
659
+ ### Features
660
+
661
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
662
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
663
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
664
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
665
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
666
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
667
+ * change method accessibility ([c1b77fc](https://github.com/iotaledger/twin-framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
668
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
669
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
670
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
671
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
672
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
673
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
674
+
675
+
676
+ ### Dependencies
677
+
678
+ * The following workspace dependencies were updated
679
+ * dependencies
680
+ * @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
681
+ * @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
682
+ * devDependencies
683
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
684
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
685
+ * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
686
+
687
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.5...crypto-v0.0.3-next.6) (2025-11-25)
688
+
689
+
690
+ ### Miscellaneous Chores
691
+
692
+ * **crypto:** Synchronize repo versions
693
+
694
+
695
+ ### Dependencies
696
+
697
+ * The following workspace dependencies were updated
698
+ * dependencies
699
+ * @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
700
+ * @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
701
+ * devDependencies
702
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
703
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
704
+ * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
705
+
706
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.4...crypto-v0.0.3-next.5) (2025-11-20)
707
+
708
+
709
+ ### Miscellaneous Chores
710
+
711
+ * **crypto:** Synchronize repo versions
712
+
713
+
714
+ ### Dependencies
715
+
716
+ * The following workspace dependencies were updated
717
+ * dependencies
718
+ * @twin.org/core bumped from 0.0.3-next.4 to 0.0.3-next.5
719
+ * @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
720
+ * devDependencies
721
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
722
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
723
+ * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
724
+
725
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.3...crypto-v0.0.3-next.4) (2025-11-13)
4
726
 
5
727
 
6
728
  ### Miscellaneous Chores
@@ -19,7 +741,7 @@
19
741
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
20
742
  * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
21
743
 
22
- ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.2...crypto-v0.0.3-next.3) (2025-11-12)
744
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.2...crypto-v0.0.3-next.3) (2025-11-12)
23
745
 
24
746
 
25
747
  ### Miscellaneous Chores
@@ -38,7 +760,7 @@
38
760
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
39
761
  * @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
40
762
 
41
- ## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.1...crypto-v0.0.3-next.2) (2025-11-12)
763
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.1...crypto-v0.0.3-next.2) (2025-11-12)
42
764
 
43
765
 
44
766
  ### Miscellaneous Chores
@@ -57,24 +779,24 @@
57
779
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
58
780
  * @twin.org/validate-locales bumped from 0.0.3-next.1 to 0.0.3-next.2
59
781
 
60
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.0...crypto-v0.0.3-next.1) (2025-11-10)
782
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.3-next.0...crypto-v0.0.3-next.1) (2025-11-10)
61
783
 
62
784
 
63
785
  ### Features
64
786
 
65
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
66
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
67
- * add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
68
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
69
- * add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
70
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
71
- * change method accessibility ([c1b77fc](https://github.com/twinfoundation/framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
72
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
73
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
74
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
75
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
76
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
77
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
787
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
788
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
789
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
790
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
791
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
792
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
793
+ * change method accessibility ([c1b77fc](https://github.com/iotaledger/twin-framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
794
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
795
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
796
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
797
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
798
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
799
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
78
800
 
79
801
 
80
802
  ### Dependencies
@@ -88,7 +810,7 @@
88
810
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
89
811
  * @twin.org/validate-locales bumped from 0.0.3-next.0 to 0.0.3-next.1
90
812
 
91
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.21...crypto-v0.0.2-next.22) (2025-10-10)
813
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.21...crypto-v0.0.2-next.22) (2025-10-10)
92
814
 
93
815
 
94
816
  ### Miscellaneous Chores
@@ -107,12 +829,12 @@
107
829
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
108
830
  * @twin.org/validate-locales bumped from 0.0.2-next.21 to 0.0.2-next.22
109
831
 
110
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.20...crypto-v0.0.2-next.21) (2025-10-09)
832
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.20...crypto-v0.0.2-next.21) (2025-10-09)
111
833
 
112
834
 
113
835
  ### Features
114
836
 
115
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
837
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
116
838
 
117
839
 
118
840
  ### Dependencies
@@ -126,7 +848,7 @@
126
848
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
127
849
  * @twin.org/validate-locales bumped from 0.0.2-next.20 to 0.0.2-next.21
128
850
 
129
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.19...crypto-v0.0.2-next.20) (2025-10-02)
851
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.19...crypto-v0.0.2-next.20) (2025-10-02)
130
852
 
131
853
 
132
854
  ### Miscellaneous Chores
@@ -144,7 +866,7 @@
144
866
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
145
867
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
146
868
 
147
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.18...crypto-v0.0.2-next.19) (2025-09-30)
869
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.18...crypto-v0.0.2-next.19) (2025-09-30)
148
870
 
149
871
 
150
872
  ### Miscellaneous Chores
@@ -162,7 +884,7 @@
162
884
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
163
885
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
164
886
 
165
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.17...crypto-v0.0.2-next.18) (2025-09-29)
887
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.17...crypto-v0.0.2-next.18) (2025-09-29)
166
888
 
167
889
 
168
890
  ### Miscellaneous Chores
@@ -180,7 +902,7 @@
180
902
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
181
903
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
182
904
 
183
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.16...crypto-v0.0.2-next.17) (2025-09-29)
905
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.16...crypto-v0.0.2-next.17) (2025-09-29)
184
906
 
185
907
 
186
908
  ### Miscellaneous Chores
@@ -198,7 +920,7 @@
198
920
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
199
921
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
200
922
 
201
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.15...crypto-v0.0.2-next.16) (2025-09-28)
923
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.15...crypto-v0.0.2-next.16) (2025-09-28)
202
924
 
203
925
 
204
926
  ### Miscellaneous Chores
@@ -216,7 +938,7 @@
216
938
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
217
939
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
218
940
 
219
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.14...crypto-v0.0.2-next.15) (2025-09-22)
941
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.14...crypto-v0.0.2-next.15) (2025-09-22)
220
942
 
221
943
 
222
944
  ### Miscellaneous Chores
@@ -234,7 +956,7 @@
234
956
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
235
957
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
236
958
 
237
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.13...crypto-v0.0.2-next.14) (2025-09-22)
959
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.13...crypto-v0.0.2-next.14) (2025-09-22)
238
960
 
239
961
 
240
962
  ### Miscellaneous Chores
@@ -252,7 +974,7 @@
252
974
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
253
975
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
254
976
 
255
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.12...crypto-v0.0.2-next.13) (2025-09-22)
977
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.12...crypto-v0.0.2-next.13) (2025-09-22)
256
978
 
257
979
 
258
980
  ### Miscellaneous Chores
@@ -270,7 +992,7 @@
270
992
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
271
993
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
272
994
 
273
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.11...crypto-v0.0.2-next.12) (2025-09-15)
995
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.11...crypto-v0.0.2-next.12) (2025-09-15)
274
996
 
275
997
 
276
998
  ### Miscellaneous Chores
@@ -288,7 +1010,7 @@
288
1010
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
289
1011
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
290
1012
 
291
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.10...crypto-v0.0.2-next.11) (2025-09-15)
1013
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.10...crypto-v0.0.2-next.11) (2025-09-15)
292
1014
 
293
1015
 
294
1016
  ### Miscellaneous Chores
@@ -306,7 +1028,7 @@
306
1028
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
307
1029
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
308
1030
 
309
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.9...crypto-v0.0.2-next.10) (2025-09-11)
1031
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.9...crypto-v0.0.2-next.10) (2025-09-11)
310
1032
 
311
1033
 
312
1034
  ### Miscellaneous Chores
@@ -324,12 +1046,12 @@
324
1046
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
325
1047
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
326
1048
 
327
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.8...crypto-v0.0.2-next.9) (2025-09-08)
1049
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.8...crypto-v0.0.2-next.9) (2025-09-08)
328
1050
 
329
1051
 
330
1052
  ### Features
331
1053
 
332
- * add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
1054
+ * add mnemonic validation ([4b43491](https://github.com/iotaledger/twin-framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
333
1055
 
334
1056
 
335
1057
  ### Dependencies
@@ -342,7 +1064,7 @@
342
1064
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
343
1065
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
344
1066
 
345
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.7...crypto-v0.0.2-next.8) (2025-09-05)
1067
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.7...crypto-v0.0.2-next.8) (2025-09-05)
346
1068
 
347
1069
 
348
1070
  ### Miscellaneous Chores
@@ -360,12 +1082,12 @@
360
1082
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
361
1083
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
362
1084
 
363
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.6...crypto-v0.0.2-next.7) (2025-08-29)
1085
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.6...crypto-v0.0.2-next.7) (2025-08-29)
364
1086
 
365
1087
 
366
1088
  ### Features
367
1089
 
368
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1090
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
369
1091
 
370
1092
 
371
1093
  ### Dependencies
@@ -378,7 +1100,7 @@
378
1100
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
379
1101
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
380
1102
 
381
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.5...crypto-v0.0.2-next.6) (2025-08-27)
1103
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.5...crypto-v0.0.2-next.6) (2025-08-27)
382
1104
 
383
1105
 
384
1106
  ### Miscellaneous Chores
@@ -396,12 +1118,12 @@
396
1118
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
397
1119
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
398
1120
 
399
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.4...crypto-v0.0.2-next.5) (2025-08-19)
1121
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.4...crypto-v0.0.2-next.5) (2025-08-19)
400
1122
 
401
1123
 
402
1124
  ### Features
403
1125
 
404
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1126
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
405
1127
 
406
1128
 
407
1129
  ### Dependencies
@@ -414,12 +1136,12 @@
414
1136
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
415
1137
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
416
1138
 
417
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.3...crypto-v0.0.2-next.4) (2025-08-15)
1139
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.3...crypto-v0.0.2-next.4) (2025-08-15)
418
1140
 
419
1141
 
420
1142
  ### Features
421
1143
 
422
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
1144
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
423
1145
 
424
1146
 
425
1147
  ### Dependencies
@@ -432,18 +1154,18 @@
432
1154
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
433
1155
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
434
1156
 
435
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.2...crypto-v0.0.2-next.3) (2025-08-06)
1157
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.2...crypto-v0.0.2-next.3) (2025-08-06)
436
1158
 
437
1159
 
438
1160
  ### Features
439
1161
 
440
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
441
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
442
- * add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
443
- * change method accessibility ([c1b77fc](https://github.com/twinfoundation/framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
444
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
445
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
446
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1162
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1163
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1164
+ * add RSA support for public key components ([7126259](https://github.com/iotaledger/twin-framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
1165
+ * change method accessibility ([c1b77fc](https://github.com/iotaledger/twin-framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
1166
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1167
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1168
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
447
1169
 
448
1170
 
449
1171
  ### Dependencies
@@ -456,17 +1178,17 @@
456
1178
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
457
1179
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
458
1180
 
459
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.1...crypto-v0.0.2-next.2) (2025-08-06)
1181
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.1...crypto-v0.0.2-next.2) (2025-08-06)
460
1182
 
461
1183
 
462
1184
  ### Features
463
1185
 
464
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
465
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
466
- * change method accessibility ([c1b77fc](https://github.com/twinfoundation/framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
467
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
468
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
469
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1186
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1187
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1188
+ * change method accessibility ([c1b77fc](https://github.com/iotaledger/twin-framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
1189
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1190
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1191
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
470
1192
 
471
1193
 
472
1194
  ### Dependencies
@@ -479,16 +1201,16 @@
479
1201
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
480
1202
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
481
1203
 
482
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/crypto-v0.0.2-next.0...crypto-v0.0.2-next.1) (2025-08-06)
1204
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.2-next.0...crypto-v0.0.2-next.1) (2025-08-06)
483
1205
 
484
1206
 
485
1207
  ### Features
486
1208
 
487
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
488
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
489
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
490
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
491
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1209
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1210
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1211
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1212
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1213
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
492
1214
 
493
1215
 
494
1216
  ### Dependencies
@@ -506,8 +1228,8 @@
506
1228
 
507
1229
  ### Features
508
1230
 
509
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
510
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1231
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1232
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
511
1233
 
512
1234
 
513
1235
  ### Dependencies
@@ -520,14 +1242,14 @@
520
1242
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
521
1243
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
522
1244
 
523
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.69...crypto-v0.0.1-next.70) (2025-07-02)
1245
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.69...crypto-v0.0.1-next.70) (2025-07-02)
524
1246
 
525
1247
 
526
1248
  ### Features
527
1249
 
528
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
529
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
530
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1250
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1251
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1252
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
531
1253
 
532
1254
 
533
1255
  ### Dependencies
@@ -540,14 +1262,14 @@
540
1262
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
541
1263
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
542
1264
 
543
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.68...crypto-v0.0.1-next.69) (2025-07-02)
1265
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.68...crypto-v0.0.1-next.69) (2025-07-02)
544
1266
 
545
1267
 
546
1268
  ### Features
547
1269
 
548
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
549
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
550
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1270
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1271
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1272
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
551
1273
 
552
1274
 
553
1275
  ### Dependencies
@@ -560,12 +1282,12 @@
560
1282
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
561
1283
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
562
1284
 
563
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.67...crypto-v0.0.1-next.68) (2025-07-02)
1285
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.67...crypto-v0.0.1-next.68) (2025-07-02)
564
1286
 
565
1287
 
566
1288
  ### Features
567
1289
 
568
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1290
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
569
1291
 
570
1292
 
571
1293
  ### Dependencies
@@ -578,7 +1300,7 @@
578
1300
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
579
1301
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
580
1302
 
581
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.66...crypto-v0.0.1-next.67) (2025-06-26)
1303
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.66...crypto-v0.0.1-next.67) (2025-06-26)
582
1304
 
583
1305
 
584
1306
  ### Miscellaneous Chores
@@ -592,7 +1314,7 @@
592
1314
  * dependencies
593
1315
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
594
1316
 
595
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.65...crypto-v0.0.1-next.66) (2025-06-26)
1317
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.65...crypto-v0.0.1-next.66) (2025-06-26)
596
1318
 
597
1319
 
598
1320
  ### Miscellaneous Chores
@@ -606,7 +1328,7 @@
606
1328
  * dependencies
607
1329
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
608
1330
 
609
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.64...crypto-v0.0.1-next.65) (2025-06-19)
1331
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.64...crypto-v0.0.1-next.65) (2025-06-19)
610
1332
 
611
1333
 
612
1334
  ### Miscellaneous Chores
@@ -620,7 +1342,7 @@
620
1342
  * dependencies
621
1343
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
622
1344
 
623
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.63...crypto-v0.0.1-next.64) (2025-06-19)
1345
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.63...crypto-v0.0.1-next.64) (2025-06-19)
624
1346
 
625
1347
 
626
1348
  ### Miscellaneous Chores
@@ -634,7 +1356,7 @@
634
1356
  * dependencies
635
1357
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
636
1358
 
637
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.62...crypto-v0.0.1-next.63) (2025-06-18)
1359
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.62...crypto-v0.0.1-next.63) (2025-06-18)
638
1360
 
639
1361
 
640
1362
  ### Miscellaneous Chores
@@ -648,13 +1370,13 @@
648
1370
  * dependencies
649
1371
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
650
1372
 
651
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.61...crypto-v0.0.1-next.62) (2025-06-17)
1373
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.61...crypto-v0.0.1-next.62) (2025-06-17)
652
1374
 
653
1375
 
654
1376
  ### Features
655
1377
 
656
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
657
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1378
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1379
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
658
1380
 
659
1381
 
660
1382
  ### Dependencies
@@ -663,7 +1385,7 @@
663
1385
  * dependencies
664
1386
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
665
1387
 
666
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.60...crypto-v0.0.1-next.61) (2025-06-17)
1388
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.60...crypto-v0.0.1-next.61) (2025-06-17)
667
1389
 
668
1390
 
669
1391
  ### Miscellaneous Chores
@@ -677,7 +1399,7 @@
677
1399
  * dependencies
678
1400
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
679
1401
 
680
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.59...crypto-v0.0.1-next.60) (2025-06-17)
1402
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.59...crypto-v0.0.1-next.60) (2025-06-17)
681
1403
 
682
1404
 
683
1405
  ### Miscellaneous Chores
@@ -691,7 +1413,7 @@
691
1413
  * dependencies
692
1414
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
693
1415
 
694
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.58...crypto-v0.0.1-next.59) (2025-06-17)
1416
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.58...crypto-v0.0.1-next.59) (2025-06-17)
695
1417
 
696
1418
 
697
1419
  ### Miscellaneous Chores
@@ -705,7 +1427,7 @@
705
1427
  * dependencies
706
1428
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
707
1429
 
708
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.57...crypto-v0.0.1-next.58) (2025-06-13)
1430
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.57...crypto-v0.0.1-next.58) (2025-06-13)
709
1431
 
710
1432
 
711
1433
  ### Miscellaneous Chores
@@ -719,12 +1441,12 @@
719
1441
  * dependencies
720
1442
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
721
1443
 
722
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.56...crypto-v0.0.1-next.57) (2025-06-10)
1444
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.56...crypto-v0.0.1-next.57) (2025-06-10)
723
1445
 
724
1446
 
725
1447
  ### Features
726
1448
 
727
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1449
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
728
1450
 
729
1451
 
730
1452
  ### Dependencies
@@ -733,7 +1455,7 @@
733
1455
  * dependencies
734
1456
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
735
1457
 
736
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.55...crypto-v0.0.1-next.56) (2025-05-08)
1458
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.55...crypto-v0.0.1-next.56) (2025-05-08)
737
1459
 
738
1460
 
739
1461
  ### Miscellaneous Chores
@@ -747,7 +1469,7 @@
747
1469
  * dependencies
748
1470
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
749
1471
 
750
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.54...crypto-v0.0.1-next.55) (2025-05-07)
1472
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.54...crypto-v0.0.1-next.55) (2025-05-07)
751
1473
 
752
1474
 
753
1475
  ### Miscellaneous Chores
@@ -761,7 +1483,7 @@
761
1483
  * dependencies
762
1484
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
763
1485
 
764
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.53...crypto-v0.0.1-next.54) (2025-05-06)
1486
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.53...crypto-v0.0.1-next.54) (2025-05-06)
765
1487
 
766
1488
 
767
1489
  ### Miscellaneous Chores
@@ -775,7 +1497,7 @@
775
1497
  * dependencies
776
1498
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
777
1499
 
778
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.52...crypto-v0.0.1-next.53) (2025-05-01)
1500
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.52...crypto-v0.0.1-next.53) (2025-05-01)
779
1501
 
780
1502
 
781
1503
  ### Miscellaneous Chores
@@ -789,12 +1511,12 @@
789
1511
  * dependencies
790
1512
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
791
1513
 
792
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.51...crypto-v0.0.1-next.52) (2025-04-17)
1514
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.51...crypto-v0.0.1-next.52) (2025-04-17)
793
1515
 
794
1516
 
795
1517
  ### Features
796
1518
 
797
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1519
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
798
1520
 
799
1521
 
800
1522
  ### Dependencies
@@ -803,7 +1525,7 @@
803
1525
  * dependencies
804
1526
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
805
1527
 
806
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.50...crypto-v0.0.1-next.51) (2025-03-27)
1528
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.50...crypto-v0.0.1-next.51) (2025-03-27)
807
1529
 
808
1530
 
809
1531
  ### Miscellaneous Chores
@@ -817,7 +1539,7 @@
817
1539
  * dependencies
818
1540
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
819
1541
 
820
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/crypto-v0.0.1-next.49...crypto-v0.0.1-next.50) (2025-03-26)
1542
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/crypto-v0.0.1-next.49...crypto-v0.0.1-next.50) (2025-03-26)
821
1543
 
822
1544
 
823
1545
  ### Miscellaneous Chores