-
Notifications
You must be signed in to change notification settings - Fork 70
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
[feature] Importing existing CA: KeyError: 'ecdsa-with-SHA384' #118
Comments
@MEschenbacher looks like these are not supported: django-x509/django_x509/base/models.py Lines 39 to 45 in 9b3795e
I guess these can be added with a bit of work. How do you generate an ecdsa cert for testing purposes? |
Here's a minimal example for creation of the ecdsa certificate:
|
Hey there @nemesisdesign I'd like to take a shot at working on this, how do you propose I start? |
Start with https://github.com/openwisp/django-x509#installing-for-development, then come to the dev chat to coordinate. |
To support this feature properly, we must add a way to specify the algorithm used for generating the certificate, which now is hardcoded to be crypto.TYPE_RSA (RSA). An attempt was made in #140. |
I'm trying to importing an existing CA certificate which generates an error:
Looking into
django_x509/base/models.py
dictSIGNATURE_MAPPING
: are EC signatures and certificates/keys supported?The text was updated successfully, but these errors were encountered: