@bcts/components 1.0.0-alpha.11 → 1.0.0-alpha.13
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 +11 -0
- package/dist/digest-BJdJcMii.cjs +3 -0
- package/dist/digest-DGAZAt7R.mjs +921 -0
- package/dist/digest-DGAZAt7R.mjs.map +1 -0
- package/dist/{digest-dd78wg6w.cjs → digest-DTBmqDcQ.cjs} +494 -14
- package/dist/digest-DTBmqDcQ.cjs.map +1 -0
- package/dist/digest-yHhOyIQh.mjs +3 -0
- package/dist/index.cjs +7308 -5153
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4534 -2670
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +4534 -2670
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +5650 -3066
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +7197 -5062
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -8
- package/dist/digest--g2P5w95.mjs +0 -459
- package/dist/digest--g2P5w95.mjs.map +0 -1
- package/dist/digest-BST9ve5C.cjs +0 -3
- package/dist/digest-D5KUIzcO.mjs +0 -3
- package/dist/digest-dd78wg6w.cjs.map +0 -1
package/README.md
CHANGED
|
@@ -12,3 +12,14 @@ Also includes a library of CBOR tags and UR types for use with these types.
|
|
|
12
12
|
|
|
13
13
|
This TypeScript implementation is based on [bc-components-rust](https://github.com/BlockchainCommons/bc-components-rust) **v0.30.0** ([commit](https://github.com/BlockchainCommons/bc-components-rust/tree/f3d0081db048da942f316aa4cb5128af8921edd8)).
|
|
14
14
|
|
|
15
|
+
### Limitations: SSH Agent Integration
|
|
16
|
+
|
|
17
|
+
The following features require platform-specific implementations and are not yet functional:
|
|
18
|
+
|
|
19
|
+
- SSH agent lock/unlock operations
|
|
20
|
+
- SSH signature schemes
|
|
21
|
+
|
|
22
|
+
These features will throw a `CryptoError` with kind `SshAgent` or `Ssh` when attempted. Use alternative methods:
|
|
23
|
+
- For key derivation: Use `HKDF`, `PBKDF2`, `Scrypt`, or `Argon2id` instead of `SSHAgent`
|
|
24
|
+
- For signing: Use `Ed25519`, `Schnorr`, `Ecdsa`, or `Sr25519` schemes instead of SSH schemes
|
|
25
|
+
|