Open andrewwhitehead opened 3 years ago
P-384 is one of the core key types supported in DIDComm.
The RustCrypto p384 crate only supports the key representation currently, not signing or ECDH: https://github.com/RustCrypto/elliptic-curves/issues/240
p384
There is the ring-compat crate, but it only seems to support P-384 signatures, not ECDH.
ring-compat
Currently waiting to see if the weierstrass crate gets added with generic arithmetic support for these curves.
weierstrass
static-dh-ecdh might be one option for implementing ECDH. It would require an allocator and Rust 1.51+ for min-const-generics.
min-const-generics
P-384 is one of the core key types supported in DIDComm.
The RustCrypto
p384
crate only supports the key representation currently, not signing or ECDH: https://github.com/RustCrypto/elliptic-curves/issues/240There is the
ring-compat
crate, but it only seems to support P-384 signatures, not ECDH.Currently waiting to see if the
weierstrass
crate gets added with generic arithmetic support for these curves.