Skip to content
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

Bug in applyKeyAndIV function while using aes-256-cbc cipher #24

Closed
ishbir opened this issue Dec 17, 2014 · 1 comment
Closed

Bug in applyKeyAndIV function while using aes-256-cbc cipher #24

ishbir opened this issue Dec 17, 2014 · 1 comment

Comments

@ishbir
Copy link

ishbir commented Dec 17, 2014

I'm working on implementing elliptic curve cryptography using OpenSSL and I borrowed a lot of code from ciphers.go. While testing my own project, I noticed that while initializing the decryption context using the NewDecryptionCipherCtx function and "aes-256-cbc" as the cipher, it wouldn't do the decryption properly even though the IV, key and the ciphertext were as expected. Further investigation revealed that this was because of EVP_EncryptInit_ex function on line 156 of ciphers.go.

My solution to the problem was adding a new variable called do to the function which would determine whether the intended operation is encryption or decryption and do everything accordingly. More here: https://github.com/ishbir/elliptic/blob/master/ciphers.go#L123

I think that the same fix should be made in this package.

@thepaul
Copy link
Contributor

thepaul commented Dec 19, 2014

Thanks ishbir! Good call.

merlin-northern pushed a commit to merlin-northern/openssl that referenced this issue Aug 26, 2020
…1.1-UseCertAndKey

Revert "UseCertAndKey added."
nathan454 pushed a commit to nathan454/openssl that referenced this issue Nov 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants