@twin.org/crypto 0.0.1-next.8 → 0.0.1
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/dist/cjs/index.cjs +251 -0
- package/dist/esm/index.mjs +251 -2
- package/dist/types/address/bip44.d.ts +15 -0
- package/dist/types/curves/ed25519.d.ts +12 -0
- package/dist/types/hashes/blake3.d.ts +44 -0
- package/dist/types/hashes/sha3.d.ts +61 -0
- package/dist/types/index.d.ts +2 -0
- package/docs/changelog.md +331 -1
- package/docs/reference/classes/Bech32.md +15 -7
- package/docs/reference/classes/Bip32Path.md +17 -9
- package/docs/reference/classes/Bip39.md +28 -12
- package/docs/reference/classes/Bip44.md +121 -21
- package/docs/reference/classes/Blake2b.md +35 -17
- package/docs/reference/classes/Blake3.md +137 -0
- package/docs/reference/classes/ChaCha20Poly1305.md +18 -8
- package/docs/reference/classes/Ed25519.md +65 -9
- package/docs/reference/classes/HmacSha1.md +17 -9
- package/docs/reference/classes/HmacSha256.md +26 -12
- package/docs/reference/classes/HmacSha512.md +38 -16
- package/docs/reference/classes/Hotp.md +9 -5
- package/docs/reference/classes/PasswordGenerator.md +6 -4
- package/docs/reference/classes/PasswordValidator.md +23 -11
- package/docs/reference/classes/Pbkdf2.md +27 -11
- package/docs/reference/classes/Secp256k1.md +21 -9
- package/docs/reference/classes/Sha1.md +11 -7
- package/docs/reference/classes/Sha256.md +17 -9
- package/docs/reference/classes/Sha3.md +179 -0
- package/docs/reference/classes/Sha512.md +23 -11
- package/docs/reference/classes/Slip0010.md +27 -11
- package/docs/reference/classes/Totp.md +42 -16
- package/docs/reference/classes/X25519.md +9 -5
- package/docs/reference/classes/Zip215.md +12 -6
- package/docs/reference/index.md +2 -0
- package/docs/reference/type-aliases/KeyType.md +1 -1
- package/locales/en.json +3 -6
- package/package.json +13 -13
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Perform a SHA-3 hash on the block.
|
|
3
|
+
*/
|
|
4
|
+
export declare class Sha3 {
|
|
5
|
+
/**
|
|
6
|
+
* Sha3 224.
|
|
7
|
+
*/
|
|
8
|
+
static readonly SIZE_224: number;
|
|
9
|
+
/**
|
|
10
|
+
* Sha3 256.
|
|
11
|
+
*/
|
|
12
|
+
static readonly SIZE_256: number;
|
|
13
|
+
/**
|
|
14
|
+
* Sha3 384.
|
|
15
|
+
*/
|
|
16
|
+
static readonly SIZE_384: number;
|
|
17
|
+
/**
|
|
18
|
+
* Sha3 512.
|
|
19
|
+
*/
|
|
20
|
+
static readonly SIZE_512: number;
|
|
21
|
+
/**
|
|
22
|
+
* Create a new instance of Sha3.
|
|
23
|
+
* @param bits The number of bits.
|
|
24
|
+
*/
|
|
25
|
+
constructor(bits?: number);
|
|
26
|
+
/**
|
|
27
|
+
* Perform Sum 256 on the block.
|
|
28
|
+
* @param block The block to operate on.
|
|
29
|
+
* @returns The sum 256 of the block.
|
|
30
|
+
*/
|
|
31
|
+
static sum256(block: Uint8Array): Uint8Array;
|
|
32
|
+
/**
|
|
33
|
+
* Perform Sum 224 on the block.
|
|
34
|
+
* @param block The block to operate on.
|
|
35
|
+
* @returns The sum 224 of the block.
|
|
36
|
+
*/
|
|
37
|
+
static sum224(block: Uint8Array): Uint8Array;
|
|
38
|
+
/**
|
|
39
|
+
* Perform Sum 384 on the block.
|
|
40
|
+
* @param block The block to operate on.
|
|
41
|
+
* @returns The sum 384 of the block.
|
|
42
|
+
*/
|
|
43
|
+
static sum384(block: Uint8Array): Uint8Array;
|
|
44
|
+
/**
|
|
45
|
+
* Perform Sum 512 on the block.
|
|
46
|
+
* @param block The block to operate on.
|
|
47
|
+
* @returns The sum 512 of the block.
|
|
48
|
+
*/
|
|
49
|
+
static sum512(block: Uint8Array): Uint8Array;
|
|
50
|
+
/**
|
|
51
|
+
* Update the hash with the block.
|
|
52
|
+
* @param block The block to update the hash with.
|
|
53
|
+
* @returns The instance for chaining.
|
|
54
|
+
*/
|
|
55
|
+
update(block: Uint8Array): Sha3;
|
|
56
|
+
/**
|
|
57
|
+
* Get the digest for the hash.
|
|
58
|
+
* @returns The instance for chaining.
|
|
59
|
+
*/
|
|
60
|
+
digest(): Uint8Array;
|
|
61
|
+
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6,12 +6,14 @@ export * from "./curves/secp256k1";
|
|
|
6
6
|
export * from "./curves/x25519";
|
|
7
7
|
export * from "./curves/zip215";
|
|
8
8
|
export * from "./hashes/blake2b";
|
|
9
|
+
export * from "./hashes/blake3";
|
|
9
10
|
export * from "./hashes/hmacSha1";
|
|
10
11
|
export * from "./hashes/hmacSha256";
|
|
11
12
|
export * from "./hashes/hmacSha512";
|
|
12
13
|
export * from "./hashes/pbkdf2";
|
|
13
14
|
export * from "./hashes/sha1";
|
|
14
15
|
export * from "./hashes/sha256";
|
|
16
|
+
export * from "./hashes/sha3";
|
|
15
17
|
export * from "./hashes/sha512";
|
|
16
18
|
export * from "./keys/bip32Path";
|
|
17
19
|
export * from "./keys/bip39";
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,335 @@
|
|
|
1
1
|
# @twin.org/crypto - Changelog
|
|
2
2
|
|
|
3
|
-
## 0.0.1-
|
|
3
|
+
## 0.0.1 (2025-07-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
|
|
9
|
+
* release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* The following workspace dependencies were updated
|
|
15
|
+
* dependencies
|
|
16
|
+
* @twin.org/core bumped from ^0.0.0 to ^0.0.1
|
|
17
|
+
* @twin.org/nameof bumped from ^0.0.0 to ^0.0.1
|
|
18
|
+
* devDependencies
|
|
19
|
+
* @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
|
|
20
|
+
* @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
|
|
21
|
+
|
|
22
|
+
## [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)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
28
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
29
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Dependencies
|
|
33
|
+
|
|
34
|
+
* The following workspace dependencies were updated
|
|
35
|
+
* dependencies
|
|
36
|
+
* @twin.org/core bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
37
|
+
* @twin.org/nameof bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
38
|
+
* devDependencies
|
|
39
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
40
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
41
|
+
|
|
42
|
+
## [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)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
48
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
49
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### Dependencies
|
|
53
|
+
|
|
54
|
+
* The following workspace dependencies were updated
|
|
55
|
+
* dependencies
|
|
56
|
+
* @twin.org/core bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
57
|
+
* @twin.org/nameof bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
58
|
+
* devDependencies
|
|
59
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
60
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
61
|
+
|
|
62
|
+
## [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)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### Features
|
|
66
|
+
|
|
67
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Dependencies
|
|
71
|
+
|
|
72
|
+
* The following workspace dependencies were updated
|
|
73
|
+
* dependencies
|
|
74
|
+
* @twin.org/core bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
75
|
+
* @twin.org/nameof bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
76
|
+
* devDependencies
|
|
77
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
78
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
79
|
+
|
|
80
|
+
## [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)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **crypto:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Dependencies
|
|
89
|
+
|
|
90
|
+
* The following workspace dependencies were updated
|
|
91
|
+
* dependencies
|
|
92
|
+
* @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
|
|
93
|
+
|
|
94
|
+
## [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)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Miscellaneous Chores
|
|
98
|
+
|
|
99
|
+
* **crypto:** Synchronize repo versions
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Dependencies
|
|
103
|
+
|
|
104
|
+
* The following workspace dependencies were updated
|
|
105
|
+
* dependencies
|
|
106
|
+
* @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
|
|
107
|
+
|
|
108
|
+
## [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)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **crypto:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Dependencies
|
|
117
|
+
|
|
118
|
+
* The following workspace dependencies were updated
|
|
119
|
+
* dependencies
|
|
120
|
+
* @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
121
|
+
|
|
122
|
+
## [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)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Miscellaneous Chores
|
|
126
|
+
|
|
127
|
+
* **crypto:** Synchronize repo versions
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Dependencies
|
|
131
|
+
|
|
132
|
+
* The following workspace dependencies were updated
|
|
133
|
+
* dependencies
|
|
134
|
+
* @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
|
|
135
|
+
|
|
136
|
+
## [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)
|
|
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.1-next.62 to 0.0.1-next.63
|
|
149
|
+
|
|
150
|
+
## [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)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Features
|
|
154
|
+
|
|
155
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
156
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Dependencies
|
|
160
|
+
|
|
161
|
+
* The following workspace dependencies were updated
|
|
162
|
+
* dependencies
|
|
163
|
+
* @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
|
|
164
|
+
|
|
165
|
+
## [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)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Miscellaneous Chores
|
|
169
|
+
|
|
170
|
+
* **crypto:** Synchronize repo versions
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### Dependencies
|
|
174
|
+
|
|
175
|
+
* The following workspace dependencies were updated
|
|
176
|
+
* dependencies
|
|
177
|
+
* @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
|
|
178
|
+
|
|
179
|
+
## [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)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Miscellaneous Chores
|
|
183
|
+
|
|
184
|
+
* **crypto:** Synchronize repo versions
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
### Dependencies
|
|
188
|
+
|
|
189
|
+
* The following workspace dependencies were updated
|
|
190
|
+
* dependencies
|
|
191
|
+
* @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
192
|
+
|
|
193
|
+
## [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)
|
|
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.1-next.58 to 0.0.1-next.59
|
|
206
|
+
|
|
207
|
+
## [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)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Miscellaneous Chores
|
|
211
|
+
|
|
212
|
+
* **crypto:** Synchronize repo versions
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### Dependencies
|
|
216
|
+
|
|
217
|
+
* The following workspace dependencies were updated
|
|
218
|
+
* dependencies
|
|
219
|
+
* @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
|
|
220
|
+
|
|
221
|
+
## [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)
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
### Features
|
|
225
|
+
|
|
226
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
### Dependencies
|
|
230
|
+
|
|
231
|
+
* The following workspace dependencies were updated
|
|
232
|
+
* dependencies
|
|
233
|
+
* @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
234
|
+
|
|
235
|
+
## [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)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
### Miscellaneous Chores
|
|
239
|
+
|
|
240
|
+
* **crypto:** Synchronize repo versions
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Dependencies
|
|
244
|
+
|
|
245
|
+
* The following workspace dependencies were updated
|
|
246
|
+
* dependencies
|
|
247
|
+
* @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
248
|
+
|
|
249
|
+
## [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)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Miscellaneous Chores
|
|
253
|
+
|
|
254
|
+
* **crypto:** Synchronize repo versions
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Dependencies
|
|
258
|
+
|
|
259
|
+
* The following workspace dependencies were updated
|
|
260
|
+
* dependencies
|
|
261
|
+
* @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
262
|
+
|
|
263
|
+
## [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)
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
### Miscellaneous Chores
|
|
267
|
+
|
|
268
|
+
* **crypto:** Synchronize repo versions
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
### Dependencies
|
|
272
|
+
|
|
273
|
+
* The following workspace dependencies were updated
|
|
274
|
+
* dependencies
|
|
275
|
+
* @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
276
|
+
|
|
277
|
+
## [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)
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
### Miscellaneous Chores
|
|
281
|
+
|
|
282
|
+
* **crypto:** Synchronize repo versions
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### Dependencies
|
|
286
|
+
|
|
287
|
+
* The following workspace dependencies were updated
|
|
288
|
+
* dependencies
|
|
289
|
+
* @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
290
|
+
|
|
291
|
+
## [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)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
### Features
|
|
295
|
+
|
|
296
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
### Dependencies
|
|
300
|
+
|
|
301
|
+
* The following workspace dependencies were updated
|
|
302
|
+
* dependencies
|
|
303
|
+
* @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
304
|
+
|
|
305
|
+
## [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)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
### Miscellaneous Chores
|
|
309
|
+
|
|
310
|
+
* **crypto:** Synchronize repo versions
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Dependencies
|
|
314
|
+
|
|
315
|
+
* The following workspace dependencies were updated
|
|
316
|
+
* dependencies
|
|
317
|
+
* @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
318
|
+
|
|
319
|
+
## [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)
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### Miscellaneous Chores
|
|
323
|
+
|
|
324
|
+
* **crypto:** Synchronize repo versions
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Dependencies
|
|
328
|
+
|
|
329
|
+
* The following workspace dependencies were updated
|
|
330
|
+
* dependencies
|
|
331
|
+
* @twin.org/core bumped from 0.0.1-next.49 to 0.0.1-next.50
|
|
332
|
+
|
|
333
|
+
## 0.0.1-next.49
|
|
4
334
|
|
|
5
335
|
- Added: Bip44
|
|
@@ -4,13 +4,13 @@ Bech32 encoding and decoding.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new Bech32**():
|
|
9
|
+
> **new Bech32**(): `Bech32`
|
|
10
10
|
|
|
11
11
|
#### Returns
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`Bech32`
|
|
14
14
|
|
|
15
15
|
## Methods
|
|
16
16
|
|
|
@@ -22,11 +22,15 @@ Encode the buffer.
|
|
|
22
22
|
|
|
23
23
|
#### Parameters
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
##### humanReadablePart
|
|
26
|
+
|
|
27
|
+
`string`
|
|
26
28
|
|
|
27
29
|
The header.
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
##### data
|
|
32
|
+
|
|
33
|
+
`Uint8Array`
|
|
30
34
|
|
|
31
35
|
The data to encode.
|
|
32
36
|
|
|
@@ -46,7 +50,9 @@ Decode a bech32 string.
|
|
|
46
50
|
|
|
47
51
|
#### Parameters
|
|
48
52
|
|
|
49
|
-
|
|
53
|
+
##### bech
|
|
54
|
+
|
|
55
|
+
`string`
|
|
50
56
|
|
|
51
57
|
The text to decode.
|
|
52
58
|
|
|
@@ -78,7 +84,9 @@ Is the input a bech 32 address.
|
|
|
78
84
|
|
|
79
85
|
#### Parameters
|
|
80
86
|
|
|
81
|
-
|
|
87
|
+
##### bech
|
|
88
|
+
|
|
89
|
+
`unknown`
|
|
82
90
|
|
|
83
91
|
The value to test.
|
|
84
92
|
|
|
@@ -4,39 +4,43 @@ Class to help with bip32 paths.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new Bip32Path**(`initialPath
|
|
9
|
+
> **new Bip32Path**(`initialPath?`): `Bip32Path`
|
|
10
10
|
|
|
11
11
|
Create a new instance of Bip32Path.
|
|
12
12
|
|
|
13
13
|
#### Parameters
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
##### initialPath?
|
|
16
|
+
|
|
17
|
+
`string`
|
|
16
18
|
|
|
17
19
|
Initial path to create.
|
|
18
20
|
|
|
19
21
|
#### Returns
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
`Bip32Path`
|
|
22
24
|
|
|
23
25
|
## Methods
|
|
24
26
|
|
|
25
27
|
### fromPath()
|
|
26
28
|
|
|
27
|
-
> `static` **fromPath**(`bip32Path`):
|
|
29
|
+
> `static` **fromPath**(`bip32Path`): `Bip32Path`
|
|
28
30
|
|
|
29
31
|
Construct a new path by cloning an existing one.
|
|
30
32
|
|
|
31
33
|
#### Parameters
|
|
32
34
|
|
|
33
|
-
|
|
35
|
+
##### bip32Path
|
|
36
|
+
|
|
37
|
+
`Bip32Path`
|
|
34
38
|
|
|
35
39
|
The path to clone.
|
|
36
40
|
|
|
37
41
|
#### Returns
|
|
38
42
|
|
|
39
|
-
|
|
43
|
+
`Bip32Path`
|
|
40
44
|
|
|
41
45
|
A new instance of Bip32Path.
|
|
42
46
|
|
|
@@ -64,7 +68,9 @@ Push a new index on to the path.
|
|
|
64
68
|
|
|
65
69
|
#### Parameters
|
|
66
70
|
|
|
67
|
-
|
|
71
|
+
##### index
|
|
72
|
+
|
|
73
|
+
`number`
|
|
68
74
|
|
|
69
75
|
The index to add to the path.
|
|
70
76
|
|
|
@@ -82,7 +88,9 @@ Push a new hardened index on to the path.
|
|
|
82
88
|
|
|
83
89
|
#### Parameters
|
|
84
90
|
|
|
85
|
-
|
|
91
|
+
##### index
|
|
92
|
+
|
|
93
|
+
`number`
|
|
86
94
|
|
|
87
95
|
The index to add to the path.
|
|
88
96
|
|
|
@@ -4,13 +4,13 @@ Implementation of Bip39 for mnemonic generation.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new Bip39**():
|
|
9
|
+
> **new Bip39**(): `Bip39`
|
|
10
10
|
|
|
11
11
|
#### Returns
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`Bip39`
|
|
14
14
|
|
|
15
15
|
## Methods
|
|
16
16
|
|
|
@@ -22,11 +22,15 @@ Generate a random mnemonic.
|
|
|
22
22
|
|
|
23
23
|
#### Parameters
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
##### strength
|
|
26
|
+
|
|
27
|
+
`number` = `256`
|
|
26
28
|
|
|
27
29
|
The strength of the mnemonic to generate, defaults to 256.
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
##### words
|
|
32
|
+
|
|
33
|
+
`string`[] = `wordlist`
|
|
30
34
|
|
|
31
35
|
The wordlist to use, defaults to the English wordlist.
|
|
32
36
|
|
|
@@ -50,11 +54,15 @@ Generate a mnemonic from the entropy.
|
|
|
50
54
|
|
|
51
55
|
#### Parameters
|
|
52
56
|
|
|
53
|
-
|
|
57
|
+
##### entropy
|
|
58
|
+
|
|
59
|
+
`Uint8Array`
|
|
54
60
|
|
|
55
61
|
The entropy to generate.
|
|
56
62
|
|
|
57
|
-
|
|
63
|
+
##### words
|
|
64
|
+
|
|
65
|
+
`string`[] = `wordlist`
|
|
58
66
|
|
|
59
67
|
The wordlist to use, defaults to the English wordlist.
|
|
60
68
|
|
|
@@ -72,17 +80,21 @@ Error if the length of the entropy is not a multiple of 4, or is less than 16 or
|
|
|
72
80
|
|
|
73
81
|
### mnemonicToSeed()
|
|
74
82
|
|
|
75
|
-
> `static` **mnemonicToSeed**(`mnemonic`, `password
|
|
83
|
+
> `static` **mnemonicToSeed**(`mnemonic`, `password?`): `Uint8Array`
|
|
76
84
|
|
|
77
85
|
Convert a mnemonic to a seed.
|
|
78
86
|
|
|
79
87
|
#### Parameters
|
|
80
88
|
|
|
81
|
-
|
|
89
|
+
##### mnemonic
|
|
90
|
+
|
|
91
|
+
`string`
|
|
82
92
|
|
|
83
93
|
The mnemonic to convert.
|
|
84
94
|
|
|
85
|
-
|
|
95
|
+
##### password?
|
|
96
|
+
|
|
97
|
+
`string`
|
|
86
98
|
|
|
87
99
|
The password to apply to the seed generation.
|
|
88
100
|
|
|
@@ -102,11 +114,15 @@ Convert the mnemonic back to entropy.
|
|
|
102
114
|
|
|
103
115
|
#### Parameters
|
|
104
116
|
|
|
105
|
-
|
|
117
|
+
##### mnemonic
|
|
118
|
+
|
|
119
|
+
`string`
|
|
106
120
|
|
|
107
121
|
The mnemonic to convert.
|
|
108
122
|
|
|
109
|
-
|
|
123
|
+
##### words
|
|
124
|
+
|
|
125
|
+
`string`[] = `wordlist`
|
|
110
126
|
|
|
111
127
|
The wordlist to use, defaults to the English wordlist.
|
|
112
128
|
|