You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is no support for ciphers which require an IV. In rsa.cpp we call EVP_get_cipherbyname to convert the user-specified cipher name into an OpenSSL EVP_CIPHER. If this EVP_CIPHER is one which requires more than just a password (one that also requires an IV) the encryption will fail.
DoD: RSA::write_to_file supports all ciphers in EVP_get_cipherbyname, and there are tests for this in rsa_test.cpp.
The text was updated successfully, but these errors were encountered:
Currently there is no support for ciphers which require an IV. In
rsa.cpp
we callEVP_get_cipherbyname
to convert the user-specified cipher name into an OpenSSLEVP_CIPHER
. If thisEVP_CIPHER
is one which requires more than just a password (one that also requires an IV) the encryption will fail.DoD:
RSA::write_to_file
supports all ciphers inEVP_get_cipherbyname
, and there are tests for this inrsa_test.cpp
.The text was updated successfully, but these errors were encountered: