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

Make yapet work again openssl 3.0.13 and later #29

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions src/libs/crypt/aes256.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,17 +113,6 @@ EVP_CIPHER_CTX* Aes256::initializeOrThrow(const SecureArray& ivec, MODE mode) {
throw CipherError{_("Error initializing cipher")};
}

success = EVP_CIPHER_CTX_set_key_length(context, getKey()->keySize());
if (success != SSL_SUCCESS) {
LOG_MESSAGE(std::string{__func__} + ": Error setting key length");
destroyContext(context);
char msg[YAPET::Consts::EXCEPTION_MESSAGE_BUFFER_SIZE];
std::snprintf(msg, YAPET::Consts::EXCEPTION_MESSAGE_BUFFER_SIZE,
_("Cannot set key length on context to %d"),
getKey()->keySize());
throw CipherError{msg};
}

return context;
}

Expand Down
10 changes: 0 additions & 10 deletions src/libs/crypt/crypto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,6 @@ EVP_CIPHER_CTX* Crypto::initializeOrThrow(MODE mode) {
throw CipherError{_("Error initializing cipher")};
}

success = EVP_CIPHER_CTX_set_key_length(context, _key->keySize());
if (success != SSL_SUCCESS) {
destroyContext(context);
char msg[YAPET::Consts::EXCEPTION_MESSAGE_BUFFER_SIZE];
std::snprintf(msg, YAPET::Consts::EXCEPTION_MESSAGE_BUFFER_SIZE,
_("Cannot set key length on context to %d"),
_key->keySize());
throw CipherError{msg};
}

return context;
}

Expand Down