-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
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
add es256k (secp256k1 curve) support #643
base: master
Are you sure you want to change the base?
Conversation
if strings.ToLower(ctx.String("alg")) == "es256k" { | ||
hexRaw, err := os.ReadFile(keyFile) | ||
if err != nil { | ||
return nil, errors.Wrap(err, "read file error") | ||
} | ||
raw, err := hex.DecodeString(strings.TrimPrefix(strings.TrimSpace(string(hexRaw)), "0x")) | ||
if err != nil { | ||
return nil, errors.Wrap(err, "file content is not in hex") | ||
} | ||
if isPubKey { | ||
secp256k1Pk, err := secp256k1.ParsePubKey(raw) | ||
if err != nil { | ||
return nil, errors.Wrap(err, "unable to parse public key") | ||
} | ||
return secp256k1Pk.ToECDSA(), nil | ||
} | ||
secp256k1Pk := secp256k1.PrivKeyFromBytes(raw) | ||
return secp256k1Pk.ToECDSA(), nil | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reason to not use a PEM file for this?
$ openssl ecparam -name secp256k1 -genkey -noout
-----BEGIN EC PRIVATE KEY-----
MHQCAQEEIMUALqrFTe1KusIe3WlCZeRHBZoNoL1SbqzVDHdHo+7roAcGBSuBBAAK
oUQDQgAEkQ/Pj3MnBvwmNmsYEg0cCqgsXwV8yKYJHG099jfLPjTdmV3ZWkZg146Q
Nfm0RBXjvgEoVXhHy/g2vyptMmAaKQ==
-----END EC PRIVATE KEY-----
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, there's no reason. We can certainly use PEM here.
Maybe we can add support for hex-encoded key and wallet (JSON, imported format). The support can be done directly in related commands or in the format
command.
Blockchain client node implementations often import keys via those above methods.
I'm not opposed to adding support for |
Fix #222
I'm using
github.com/decred/dcrd/dcrec/secp256k1/v4
which is go-native implementation for secp256k1 curve.My first attempt to add the support into current code. Not super clean so looking for feedbacks to fit better into the current design.
Feel free to contribute into this PR as needed. I will try to find time to update as feedbacks coming in and complete the TODO.
TODO:
step crypto key sign
andstep crypto key verify
step crypto keypair
Example: