-
Notifications
You must be signed in to change notification settings - Fork 12
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 secp384r1 mapping #6
Conversation
Signed-off-by: Patrick St-Louis <patrick.st-louis@idlab.org>
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 better if we add secp521 too to support all cases of nist curves implemented in pycose.
For reference: curves.py
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.
LGTM!
Co-authored-by: Pasquale De Rose <akira.zeta@gmail.com>
Co-authored-by: Pasquale De Rose <akira.zeta@gmail.com>
@PascalDR I committed the change request, are we good to request a merge? |
"secp256r1": "P_256" | ||
"secp256r1": "P_256", | ||
"secp384r1": "P_384", | ||
"secp521r1": "P_521" |
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.
"secp521r1": "P_521" | |
"secp521r1": "P_521" |
@PatStLouis could I ask you to set 0.7.0 here? |
@peppelinux done! |
I'm leveraging this library to evaluate
deviceResponse
objects from third party vendors. This was a required addition, could I get a review on this?