-
Notifications
You must be signed in to change notification settings - Fork 134
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
EDDSA Support #145
EDDSA Support #145
Conversation
Signed-off-by: Ivan Wallis <ivan.wallis@venafi.com>
Signed-off-by: Ivan Wallis <ivan.wallis@venafi.com>
Signed-off-by: Ivan Wallis <ivan.wallis@venafi.com>
@@ -536,6 +536,7 @@ const ( | |||
CKM_ECMQV_DERIVE = 0x00001052 | |||
CKM_ECDH_AES_KEY_WRAP = 0x00001053 | |||
CKM_RSA_AES_KEY_WRAP = 0x00001054 | |||
CKM_EDDSA = 0x00001057 |
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 a link for me to verify this number?
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.
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.
why do we need to add this manually instead of updating pkcs11.h and regenning the go code?
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.
I'm open to either way, but if we go down the regen approach then there needs to be documented steps on how to do so, such as in a Makefile.
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.
Signed-off-by: Ivan Wallis <ivan.wallis@venafi.com>
This PR is to support EDDSA signing/verification functionality.