@twin.org/crypto 0.0.3-next.2 → 0.0.3-next.22

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.
@@ -19,6 +19,7 @@
19
19
  - [Sha256](classes/Sha256.md)
20
20
  - [Sha3](classes/Sha3.md)
21
21
  - [Sha512](classes/Sha512.md)
22
+ - [IntegrityHelper](classes/IntegrityHelper.md)
22
23
  - [PemHelper](classes/PemHelper.md)
23
24
  - [Bip32Path](classes/Bip32Path.md)
24
25
  - [Bip39](classes/Bip39.md)
@@ -30,8 +31,10 @@
30
31
 
31
32
  ## Type Aliases
32
33
 
34
+ - [IntegrityAlgorithm](type-aliases/IntegrityAlgorithm.md)
33
35
  - [KeyType](type-aliases/KeyType.md)
34
36
 
35
37
  ## Variables
36
38
 
39
+ - [IntegrityAlgorithm](variables/IntegrityAlgorithm.md)
37
40
  - [KeyType](variables/KeyType.md)
@@ -0,0 +1,5 @@
1
+ # Type Alias: IntegrityAlgorithm
2
+
3
+ > **IntegrityAlgorithm** = *typeof* [`IntegrityAlgorithm`](../variables/IntegrityAlgorithm.md)\[keyof *typeof* [`IntegrityAlgorithm`](../variables/IntegrityAlgorithm.md)\]
4
+
5
+ Integrity algorithms.
@@ -0,0 +1,25 @@
1
+ # Variable: IntegrityAlgorithm
2
+
3
+ > `const` **IntegrityAlgorithm**: `object`
4
+
5
+ The names of the integrity algorithms.
6
+
7
+ ## Type Declaration
8
+
9
+ ### Sha256
10
+
11
+ > `readonly` **Sha256**: `"sha256"` = `"sha256"`
12
+
13
+ Sha256.
14
+
15
+ ### Sha384
16
+
17
+ > `readonly` **Sha384**: `"sha384"` = `"sha384"`
18
+
19
+ Sha384.
20
+
21
+ ### Sha512
22
+
23
+ > `readonly` **Sha512**: `"sha512"` = `"sha512"`
24
+
25
+ Sha512.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/crypto",
3
- "version": "0.0.3-next.2",
3
+ "version": "0.0.3-next.22",
4
4
  "description": "Contains helper methods and classes which implement cryptographic functions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,8 +20,8 @@
20
20
  "@scure/base": "2.0.0",
21
21
  "@scure/bip32": "2.0.1",
22
22
  "@scure/bip39": "2.0.1",
23
- "@twin.org/core": "0.0.3-next.2",
24
- "@twin.org/nameof": "0.0.3-next.2",
23
+ "@twin.org/core": "0.0.3-next.22",
24
+ "@twin.org/nameof": "0.0.3-next.22",
25
25
  "crypto-browserify": "3.12.1",
26
26
  "micro-key-producer": "0.8.2"
27
27
  },