-
Notifications
You must be signed in to change notification settings - Fork 17
Combined functions support #173
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
Conversation
Implements: - C_DigestEncryptUpdate - C_DecryptDigestUpdate - A roundtrip test Signed-off-by: Simo Sorce <[email protected]>
Jakuje
left a comment
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.
just typos for now. I will have to wrap my head around the operations next week
Implements: - C_SignEncryptUpdate - C_DecryptVerifyUpdate - A roundtrip test Signed-off-by: Simo Sorce <[email protected]>
Note that I may add some de-duplication via a helper function for encryption/decryption, but haven't done it so far because just copy/paste looked cleaner. |
Jakuje
left a comment
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.
regardless of the formatting changes, looks good!
This ensures the update code is identical between the regular and the combined operations. Signed-off-by: Simo Sorce <[email protected]>
|
Fixed style issues and merged, thanks! |
The code for this functions was all already available, just a matter of wiring up the calls.
Implements digest/encrypt, decrypt/digest, sign/encrypt, decrypt/verify.