Skip to content

Commit

Permalink
Define OPENSSL_NO_<algo> for alrorithms which has been removed
Browse files Browse the repository at this point in the history
Fixes Tongsuo-Project#638

To keep backward compatibility, still define the macro OPENSSL_NO_<algo>
for the algorithm which has been removed by Tongsuo to solve compilation
problems.
  • Loading branch information
dongbeiouba committed Jul 30, 2024
1 parent e931fea commit 357d296
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,17 @@ our %disabled = ( # "what" => "comment"
"zkp-gadget" => "default",
"zkp-transcript" => "default",
"bn-method" => "default",
"smtc" => "default",
"smtc-debug" => "default",
"smtc" => "default",
"smtc-debug" => "default",
"bf" => "default", # Blowfish has been removed
"blake2" => "default", # Blake2 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
"rc2" => "default", # RC2 has been removed
"rmd160" => "default", # RIPEMD has been removed
"whirlpool" => "default", # Whirlpool has been removed
);

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

0 comments on commit 357d296

Please sign in to comment.