We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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: RustCrypto/elliptic-curves#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
The text was updated successfully, but these errors were encountered:
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
Sorry, something went wrong.
No branches or pull requests
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: RustCrypto/elliptic-curves#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.The text was updated successfully, but these errors were encountered: