@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 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
+
@@ -0,0 +1,3 @@
1
+ const require_digest = require('./digest-DTBmqDcQ.cjs');
2
+
3
+ exports.Digest = require_digest.Digest;