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

Define OPENSSL_NO_<algo> for alrorithms which has been removed #644

Merged
merged 1 commit into from
Jul 31, 2024
Merged
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
15 changes: 15 additions & 0 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,21 @@ our %disabled = ( # "what" => "comment"
"zkp-gadget" => "default",
"zkp-transcript" => "default",
"bn-method" => "default",
"aria" => "default", # ARIA has been removed
"bf" => "default", # Blowfish has been removed
"blake2" => "default", # Blake2 has been removed
"camellia" => "default", # Camellia has been removed
"cast" => "default", # CAST has been removed
"idea" => "default", # IDEA has been removed
"md2" => "default", # MD2 has been removed
"mdc2" => "default", # MDC2 has been removed
"md4" => "default", # MD4 has been removed
"gost" => "default", # GOST has been removed
"rc2" => "default", # RC2 has been removed
"rmd160" => "default", # RIPEMD has been removed
"ripemd" => "default", # RIPEMD has been removed
"seed" => "default", # SEED has been removed
"whirlpool" => "default", # Whirlpool has been removed
);

# Note: => pair form used for aesthetics, not to truly make a hash table
Expand Down
Loading