Closed postmodern closed 3 months ago
Appears that openssl 3.x finally removed the des
and des-cbc
ciphers.
It's going to be difficult to re-enable des
in openssl 3.x.
https://docs.openssl.org/3.0/man7/migration_guide/#legacy-algorithms
We might be able to add a pure-Ruby implementation of DES with all of the OpenSSL::Cipher
methods. Tabling this until it's really needed.
Add a
Ronin::Support::Crypto::Cipher::DES
class similar toRonin::Support::Crypto::Cipher::AES
, but uses thedes
cipher.