You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In prior, is there any reason to omit secp256k1 in this package? I know it's widely used for ECDSA so I was wondering if there is specific reason to not support the curve for Diffie-Hellman
What did you do?
I'm trying to implement a protocol that involves ecdh as key agreement in a blockchain context, precisely ethereum. secp256k1 is the curve used natively so I'd just wanted to leverage on it to not create another set of public key with another curve that this package actually supports (P256, P384, P521)
In prior, is there any reason to omit
secp256k1
in this package? I know it's widely used for ECDSA so I was wondering if there is specific reason to not support the curve for Diffie-HellmanWhat did you do?
I'm trying to implement a protocol that involves ecdh as key agreement in a blockchain context, precisely ethereum.
secp256k1
is the curve used natively so I'd just wanted to leverage on it to not create another set of public key with another curve that this package actually supports (P256
,P384
,P521
)What did you expect to see?
ability to init public key from a
secp256k1
curveWhat did you see instead?
unsupported curve by crypto/ecdh
The text was updated successfully, but these errors were encountered: