-
Notifications
You must be signed in to change notification settings - Fork 45
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
ECDSA keys support? #15
Comments
Not yet, but I will look into adding it! Pull requests are also welcome if On Friday, March 21, 2014, Nicolas notifications@github.com wrote:
|
Thanks for your quick answer :) |
OpenSSL doesn't provide a way to generate ECDSA keys from what I can tell, making this non-trivial to implement and fully support using pure Ruby. I'll keep an eye out for other ways of generating, but for now this is off the table. Glad you were able to find a workaround! |
I think it is possible to generate an elliptic curve key with the OpenSSL binding, but it's not well documented at all. There is an instance method 'generate_key' but I'm not sure exactly how to use it. Interestingly, Ruby 2.4.0 has a new method on OpenSSL::PKey::EC 'generate' which may make things easier: |
Hi!
Does it support ECDSA key format? At least for public key validation?
The text was updated successfully, but these errors were encountered: