-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
CASE resumption fails with openssl due to null pointers being used #10190
Comments
#10198 fixes the issue for the null source case but not for the null destination case. CASESession::GenerateSigmaResumeMIC calls AES_CCM_encrypt with both plaintext and ciphertext being nullptr and still fails. |
@bluebin14 , the unit tests are testing that the destination can be |
The unit tests were still using non null destinations. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
<what's wrong or missing, please include any applicable:
Proposed Solution
Use non-zero pointers when calling AES_CCM_encrypt or fix the AES_CCM_encrypt implementation for openssl
The text was updated successfully, but these errors were encountered: