@twin.org/crypto 0.0.3-next.3 → 0.0.3-next.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -11
- package/dist/es/hashes/argon2id.js +38 -0
- package/dist/es/hashes/argon2id.js.map +1 -0
- package/dist/es/helpers/integrityHelper.js +67 -0
- package/dist/es/helpers/integrityHelper.js.map +1 -0
- package/dist/es/index.js +3 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/integrityAlgorithm.js +21 -0
- package/dist/es/models/integrityAlgorithm.js.map +1 -0
- package/dist/es/passwords/passwordGenerator.js +70 -12
- package/dist/es/passwords/passwordGenerator.js.map +1 -1
- package/dist/es/passwords/passwordValidator.js +68 -4
- package/dist/es/passwords/passwordValidator.js.map +1 -1
- package/dist/types/hashes/argon2id.d.ts +28 -0
- package/dist/types/helpers/integrityHelper.d.ts +26 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/models/integrityAlgorithm.d.ts +21 -0
- package/dist/types/passwords/passwordGenerator.d.ts +13 -2
- package/dist/types/passwords/passwordValidator.d.ts +34 -2
- package/docs/changelog.md +552 -1
- package/docs/examples.md +130 -1
- package/docs/reference/classes/Argon2id.md +83 -0
- package/docs/reference/classes/Bech32.md +4 -4
- package/docs/reference/classes/Bip32Path.md +6 -6
- package/docs/reference/classes/Bip39.md +16 -16
- package/docs/reference/classes/Bip44.md +6 -6
- package/docs/reference/classes/Blake2b.md +9 -9
- package/docs/reference/classes/Blake3.md +7 -7
- package/docs/reference/classes/ChaCha20Poly1305.md +3 -3
- package/docs/reference/classes/Ed25519.md +8 -8
- package/docs/reference/classes/HmacSha1.md +4 -4
- package/docs/reference/classes/HmacSha256.md +9 -9
- package/docs/reference/classes/HmacSha512.md +13 -13
- package/docs/reference/classes/Hotp.md +2 -2
- package/docs/reference/classes/IntegrityHelper.md +85 -0
- package/docs/reference/classes/PasswordGenerator.md +41 -5
- package/docs/reference/classes/PasswordValidator.md +116 -3
- package/docs/reference/classes/Pbkdf2.md +3 -3
- package/docs/reference/classes/PemHelper.md +5 -5
- package/docs/reference/classes/Secp256k1.md +6 -6
- package/docs/reference/classes/Sha1.md +4 -4
- package/docs/reference/classes/Sha256.md +9 -9
- package/docs/reference/classes/Sha3.md +13 -13
- package/docs/reference/classes/Sha512.md +13 -13
- package/docs/reference/classes/Slip0010.md +11 -11
- package/docs/reference/classes/Totp.md +12 -12
- package/docs/reference/classes/X25519.md +3 -3
- package/docs/reference/classes/Zip215.md +2 -2
- package/docs/reference/index.md +4 -0
- package/docs/reference/type-aliases/IntegrityAlgorithm.md +5 -0
- package/docs/reference/variables/IntegrityAlgorithm.md +25 -0
- package/docs/reference/variables/KeyType.md +2 -2
- package/package.json +6 -6
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import { type IValidationFailure } from "@twin.org/core";
|
|
2
2
|
/**
|
|
3
3
|
* Test password strength.
|
|
4
|
-
*
|
|
4
|
+
* @see https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Implement_Proper_Password_Strength_Controls .
|
|
5
5
|
*/
|
|
6
6
|
export declare class PasswordValidator {
|
|
7
|
+
/**
|
|
8
|
+
* Runtime name for the class.
|
|
9
|
+
*/
|
|
10
|
+
static readonly CLASS_NAME: string;
|
|
7
11
|
/**
|
|
8
12
|
* Test the strength of the password.
|
|
9
13
|
* @param property The name of the property.
|
|
10
14
|
* @param password The password to test.
|
|
11
15
|
* @param failures The list of failures to add to.
|
|
12
16
|
* @param options Options to configure the testing.
|
|
13
|
-
* @param options.minLength The minimum length of the password, defaults to 8.
|
|
17
|
+
* @param options.minLength The minimum length of the password, defaults to 15, can be 8 if MFA is enabled.
|
|
14
18
|
* @param options.maxLength The minimum length of the password, defaults to 128.
|
|
15
19
|
* @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.
|
|
16
20
|
*/
|
|
@@ -19,4 +23,32 @@ export declare class PasswordValidator {
|
|
|
19
23
|
maxLength?: number;
|
|
20
24
|
minPhraseLength?: number;
|
|
21
25
|
}): void;
|
|
26
|
+
/**
|
|
27
|
+
* Validate the password against security policy.
|
|
28
|
+
* @param password The password to validate.
|
|
29
|
+
* @param options Options to configure the testing.
|
|
30
|
+
* @param options.minLength The minimum length of the password, defaults to 15.
|
|
31
|
+
* @param options.maxLength The minimum length of the password, defaults to 128.
|
|
32
|
+
* @param options.minPhraseLength The minimum length of the password for it to be considered a pass phrase.
|
|
33
|
+
* @throws Error if the password does not meet the requirements.
|
|
34
|
+
*/
|
|
35
|
+
static validatePassword(password: string, options?: {
|
|
36
|
+
minLength?: number;
|
|
37
|
+
maxLength?: number;
|
|
38
|
+
minPhraseLength?: number;
|
|
39
|
+
}): void;
|
|
40
|
+
/**
|
|
41
|
+
* Compare two password byte arrays in constant time to prevent timing attacks.
|
|
42
|
+
* @param hashedPasswordBytes The computed password bytes to compare.
|
|
43
|
+
* @param storedPasswordBytes The stored password bytes to compare against.
|
|
44
|
+
* @returns True if the bytes match, false otherwise.
|
|
45
|
+
*/
|
|
46
|
+
static comparePasswordBytes(hashedPasswordBytes: Uint8Array, storedPasswordBytes: Uint8Array): boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Compare two hashed passwords in constant time to prevent timing attacks.
|
|
49
|
+
* @param hashedPassword The computed hash to compare.
|
|
50
|
+
* @param storedPassword The stored hash to compare against.
|
|
51
|
+
* @returns True if the hashes match, false otherwise.
|
|
52
|
+
*/
|
|
53
|
+
static comparePasswordHashes(hashedPassword: string, storedPassword: string): boolean;
|
|
22
54
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,4 +1,555 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.0.3-next.30](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.29...crypto-v0.0.3-next.30) (2026-04-14)
|
|
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.29 to 0.0.3-next.30
|
|
16
|
+
* @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
17
|
+
* devDependencies
|
|
18
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
19
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
20
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
21
|
+
|
|
22
|
+
## [0.0.3-next.29](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.28...crypto-v0.0.3-next.29) (2026-04-14)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Miscellaneous Chores
|
|
26
|
+
|
|
27
|
+
* **crypto:** Synchronize repo versions
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Dependencies
|
|
31
|
+
|
|
32
|
+
* The following workspace dependencies were updated
|
|
33
|
+
* dependencies
|
|
34
|
+
* @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
35
|
+
* @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
36
|
+
* devDependencies
|
|
37
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
38
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
39
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
40
|
+
|
|
41
|
+
## [0.0.3-next.28](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.27...crypto-v0.0.3-next.28) (2026-03-27)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Miscellaneous Chores
|
|
45
|
+
|
|
46
|
+
* **crypto:** Synchronize repo versions
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Dependencies
|
|
50
|
+
|
|
51
|
+
* The following workspace dependencies were updated
|
|
52
|
+
* dependencies
|
|
53
|
+
* @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
54
|
+
* @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
55
|
+
* devDependencies
|
|
56
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
57
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
58
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
59
|
+
|
|
60
|
+
## [0.0.3-next.27](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.26...crypto-v0.0.3-next.27) (2026-03-27)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### Features
|
|
64
|
+
|
|
65
|
+
* add crypto argon2id ([#255](https://github.com/twinfoundation/framework/issues/255)) ([27fe3a7](https://github.com/twinfoundation/framework/commit/27fe3a72eeb0f398a278ebb3f1cb9c4dd459743c))
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### Dependencies
|
|
69
|
+
|
|
70
|
+
* The following workspace dependencies were updated
|
|
71
|
+
* dependencies
|
|
72
|
+
* @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
73
|
+
* @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
74
|
+
* devDependencies
|
|
75
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
76
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
77
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
78
|
+
|
|
79
|
+
## [0.0.3-next.26](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.25...crypto-v0.0.3-next.26) (2026-03-24)
|
|
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.25 to 0.0.3-next.26
|
|
92
|
+
* @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
93
|
+
* devDependencies
|
|
94
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
95
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
96
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
97
|
+
|
|
98
|
+
## [0.0.3-next.25](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.24...crypto-v0.0.3-next.25) (2026-03-23)
|
|
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.24 to 0.0.3-next.25
|
|
111
|
+
* @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
112
|
+
* devDependencies
|
|
113
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
114
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
115
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
116
|
+
|
|
117
|
+
## [0.0.3-next.24](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.23...crypto-v0.0.3-next.24) (2026-03-19)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Bug Fixes
|
|
121
|
+
|
|
122
|
+
* ensure __decorate is defined for decorators ([103a563](https://github.com/twinfoundation/framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Dependencies
|
|
126
|
+
|
|
127
|
+
* The following workspace dependencies were updated
|
|
128
|
+
* dependencies
|
|
129
|
+
* @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
130
|
+
* @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
131
|
+
* devDependencies
|
|
132
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
133
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
134
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
135
|
+
|
|
136
|
+
## [0.0.3-next.23](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.22...crypto-v0.0.3-next.23) (2026-03-17)
|
|
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.22 to 0.0.3-next.23
|
|
149
|
+
* @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
150
|
+
* devDependencies
|
|
151
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
152
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
153
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
154
|
+
|
|
155
|
+
## [0.0.3-next.22](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.21...crypto-v0.0.3-next.22) (2026-02-26)
|
|
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.21 to 0.0.3-next.22
|
|
168
|
+
* @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
169
|
+
* devDependencies
|
|
170
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
171
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
172
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
173
|
+
|
|
174
|
+
## [0.0.3-next.21](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.20...crypto-v0.0.3-next.21) (2026-02-26)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
### Features
|
|
178
|
+
|
|
179
|
+
* add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
180
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
181
|
+
* add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
|
|
182
|
+
* add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
183
|
+
* add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
|
|
184
|
+
* additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
|
|
185
|
+
* change method accessibility ([c1b77fc](https://github.com/twinfoundation/framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
|
|
186
|
+
* eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
187
|
+
* factory create and integrity ([#235](https://github.com/twinfoundation/framework/issues/235)) ([9f98b99](https://github.com/twinfoundation/framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
|
|
188
|
+
* improved password generation and validation ([#232](https://github.com/twinfoundation/framework/issues/232)) ([ca4e18f](https://github.com/twinfoundation/framework/commit/ca4e18f388b1882cdfb774fc0d0921b8530fac33))
|
|
189
|
+
* locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
190
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
191
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
192
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
193
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
### Bug Fixes
|
|
197
|
+
|
|
198
|
+
* docs ([9df46e0](https://github.com/twinfoundation/framework/commit/9df46e0a3940a4d1f479373f58830519262f9590))
|
|
199
|
+
* docs ([67c8887](https://github.com/twinfoundation/framework/commit/67c888739448e753106ea067a8703d058e0ddf12))
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
### Dependencies
|
|
203
|
+
|
|
204
|
+
* The following workspace dependencies were updated
|
|
205
|
+
* dependencies
|
|
206
|
+
* @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
207
|
+
* @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
208
|
+
* devDependencies
|
|
209
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
210
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
211
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
212
|
+
|
|
213
|
+
## [0.0.3-next.20](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.19...crypto-v0.0.3-next.20) (2026-02-26)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Miscellaneous Chores
|
|
217
|
+
|
|
218
|
+
* **crypto:** Synchronize repo versions
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
### Dependencies
|
|
222
|
+
|
|
223
|
+
* The following workspace dependencies were updated
|
|
224
|
+
* dependencies
|
|
225
|
+
* @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
226
|
+
* @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
227
|
+
* devDependencies
|
|
228
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
229
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
230
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
231
|
+
|
|
232
|
+
## [0.0.3-next.19](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.18...crypto-v0.0.3-next.19) (2026-02-26)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Miscellaneous Chores
|
|
236
|
+
|
|
237
|
+
* **crypto:** Synchronize repo versions
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Dependencies
|
|
241
|
+
|
|
242
|
+
* The following workspace dependencies were updated
|
|
243
|
+
* dependencies
|
|
244
|
+
* @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
245
|
+
* @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
246
|
+
* devDependencies
|
|
247
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
248
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
249
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
250
|
+
|
|
251
|
+
## [0.0.3-next.18](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.17...crypto-v0.0.3-next.18) (2026-02-23)
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### Miscellaneous Chores
|
|
255
|
+
|
|
256
|
+
* **crypto:** Synchronize repo versions
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Dependencies
|
|
260
|
+
|
|
261
|
+
* The following workspace dependencies were updated
|
|
262
|
+
* dependencies
|
|
263
|
+
* @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
264
|
+
* @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
265
|
+
* devDependencies
|
|
266
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
267
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
268
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
269
|
+
|
|
270
|
+
## [0.0.3-next.17](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.16...crypto-v0.0.3-next.17) (2026-02-09)
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
### Features
|
|
274
|
+
|
|
275
|
+
* factory create and integrity ([#235](https://github.com/twinfoundation/framework/issues/235)) ([9f98b99](https://github.com/twinfoundation/framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Bug Fixes
|
|
279
|
+
|
|
280
|
+
* docs ([9df46e0](https://github.com/twinfoundation/framework/commit/9df46e0a3940a4d1f479373f58830519262f9590))
|
|
281
|
+
* docs ([67c8887](https://github.com/twinfoundation/framework/commit/67c888739448e753106ea067a8703d058e0ddf12))
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
### Dependencies
|
|
285
|
+
|
|
286
|
+
* The following workspace dependencies were updated
|
|
287
|
+
* dependencies
|
|
288
|
+
* @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
289
|
+
* @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
290
|
+
* devDependencies
|
|
291
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
292
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
293
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
294
|
+
|
|
295
|
+
## [0.0.3-next.16](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.15...crypto-v0.0.3-next.16) (2026-02-06)
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
### Features
|
|
299
|
+
|
|
300
|
+
* improved password generation and validation ([#232](https://github.com/twinfoundation/framework/issues/232)) ([ca4e18f](https://github.com/twinfoundation/framework/commit/ca4e18f388b1882cdfb774fc0d0921b8530fac33))
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
### Dependencies
|
|
304
|
+
|
|
305
|
+
* The following workspace dependencies were updated
|
|
306
|
+
* dependencies
|
|
307
|
+
* @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
308
|
+
* @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
309
|
+
* devDependencies
|
|
310
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
311
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
312
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
313
|
+
|
|
314
|
+
## [0.0.3-next.15](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.14...crypto-v0.0.3-next.15) (2026-01-29)
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Miscellaneous Chores
|
|
318
|
+
|
|
319
|
+
* **crypto:** Synchronize repo versions
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### Dependencies
|
|
323
|
+
|
|
324
|
+
* The following workspace dependencies were updated
|
|
325
|
+
* dependencies
|
|
326
|
+
* @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
327
|
+
* @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
328
|
+
* devDependencies
|
|
329
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
330
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
331
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
332
|
+
|
|
333
|
+
## [0.0.3-next.14](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.13...crypto-v0.0.3-next.14) (2026-01-22)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
### Miscellaneous Chores
|
|
337
|
+
|
|
338
|
+
* **crypto:** Synchronize repo versions
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Dependencies
|
|
342
|
+
|
|
343
|
+
* The following workspace dependencies were updated
|
|
344
|
+
* dependencies
|
|
345
|
+
* @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
346
|
+
* @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
347
|
+
* devDependencies
|
|
348
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
349
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
350
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
351
|
+
|
|
352
|
+
## [0.0.3-next.13](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.12...crypto-v0.0.3-next.13) (2026-01-08)
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
### Miscellaneous Chores
|
|
356
|
+
|
|
357
|
+
* **crypto:** Synchronize repo versions
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
### Dependencies
|
|
361
|
+
|
|
362
|
+
* The following workspace dependencies were updated
|
|
363
|
+
* dependencies
|
|
364
|
+
* @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
365
|
+
* @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
366
|
+
* devDependencies
|
|
367
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
368
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
369
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
370
|
+
|
|
371
|
+
## [0.0.3-next.12](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.11...crypto-v0.0.3-next.12) (2026-01-08)
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
### Miscellaneous Chores
|
|
375
|
+
|
|
376
|
+
* **crypto:** Synchronize repo versions
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
### Dependencies
|
|
380
|
+
|
|
381
|
+
* The following workspace dependencies were updated
|
|
382
|
+
* dependencies
|
|
383
|
+
* @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
384
|
+
* @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
385
|
+
* devDependencies
|
|
386
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
387
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
388
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
389
|
+
|
|
390
|
+
## [0.0.3-next.11](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.10...crypto-v0.0.3-next.11) (2026-01-07)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
### Miscellaneous Chores
|
|
394
|
+
|
|
395
|
+
* **crypto:** Synchronize repo versions
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Dependencies
|
|
399
|
+
|
|
400
|
+
* The following workspace dependencies were updated
|
|
401
|
+
* dependencies
|
|
402
|
+
* @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
403
|
+
* @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
404
|
+
* devDependencies
|
|
405
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
406
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
407
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
408
|
+
|
|
409
|
+
## [0.0.3-next.10](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.9...crypto-v0.0.3-next.10) (2026-01-07)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
### Miscellaneous Chores
|
|
413
|
+
|
|
414
|
+
* **crypto:** Synchronize repo versions
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
### Dependencies
|
|
418
|
+
|
|
419
|
+
* The following workspace dependencies were updated
|
|
420
|
+
* dependencies
|
|
421
|
+
* @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
422
|
+
* @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
423
|
+
* devDependencies
|
|
424
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
425
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
426
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
427
|
+
|
|
428
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.8...crypto-v0.0.3-next.9) (2026-01-05)
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
### Miscellaneous Chores
|
|
432
|
+
|
|
433
|
+
* **crypto:** Synchronize repo versions
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
### Dependencies
|
|
437
|
+
|
|
438
|
+
* The following workspace dependencies were updated
|
|
439
|
+
* dependencies
|
|
440
|
+
* @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
441
|
+
* @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
442
|
+
* devDependencies
|
|
443
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
444
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
445
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
446
|
+
|
|
447
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.7...crypto-v0.0.3-next.8) (2025-11-26)
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
### Miscellaneous Chores
|
|
451
|
+
|
|
452
|
+
* **crypto:** Synchronize repo versions
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
### Dependencies
|
|
456
|
+
|
|
457
|
+
* The following workspace dependencies were updated
|
|
458
|
+
* dependencies
|
|
459
|
+
* @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
460
|
+
* @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
461
|
+
* devDependencies
|
|
462
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
463
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
464
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
465
|
+
|
|
466
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.6...crypto-v0.0.3-next.7) (2025-11-25)
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
### Features
|
|
470
|
+
|
|
471
|
+
* add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
472
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
473
|
+
* add mnemonic validation ([4b43491](https://github.com/twinfoundation/framework/commit/4b43491cf04bb626c27faea66e5c74b3971b111d))
|
|
474
|
+
* add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
475
|
+
* add RSA support for public key components ([7126259](https://github.com/twinfoundation/framework/commit/7126259103b758c291e52a8a03818eb822d1aad1))
|
|
476
|
+
* additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
|
|
477
|
+
* change method accessibility ([c1b77fc](https://github.com/twinfoundation/framework/commit/c1b77fcfb61c092a01c97aebb2fe2dc2bbaa221b))
|
|
478
|
+
* eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
479
|
+
* locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
480
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
481
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
482
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
483
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### Dependencies
|
|
487
|
+
|
|
488
|
+
* The following workspace dependencies were updated
|
|
489
|
+
* dependencies
|
|
490
|
+
* @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
491
|
+
* @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
492
|
+
* devDependencies
|
|
493
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
494
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
495
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
496
|
+
|
|
497
|
+
## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.5...crypto-v0.0.3-next.6) (2025-11-25)
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
### Miscellaneous Chores
|
|
501
|
+
|
|
502
|
+
* **crypto:** Synchronize repo versions
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
### Dependencies
|
|
506
|
+
|
|
507
|
+
* The following workspace dependencies were updated
|
|
508
|
+
* dependencies
|
|
509
|
+
* @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
510
|
+
* @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
511
|
+
* devDependencies
|
|
512
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
513
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
514
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
515
|
+
|
|
516
|
+
## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/crypto-v0.0.3-next.4...crypto-v0.0.3-next.5) (2025-11-20)
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
### Miscellaneous Chores
|
|
520
|
+
|
|
521
|
+
* **crypto:** Synchronize repo versions
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
### Dependencies
|
|
525
|
+
|
|
526
|
+
* The following workspace dependencies were updated
|
|
527
|
+
* dependencies
|
|
528
|
+
* @twin.org/core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
529
|
+
* @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
530
|
+
* devDependencies
|
|
531
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
532
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
533
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
534
|
+
|
|
535
|
+
## [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)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
### Miscellaneous Chores
|
|
539
|
+
|
|
540
|
+
* **crypto:** Synchronize repo versions
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
### Dependencies
|
|
544
|
+
|
|
545
|
+
* The following workspace dependencies were updated
|
|
546
|
+
* dependencies
|
|
547
|
+
* @twin.org/core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
548
|
+
* @twin.org/nameof bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
549
|
+
* devDependencies
|
|
550
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
551
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
552
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
2
553
|
|
|
3
554
|
## [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)
|
|
4
555
|
|