SHA-512/256: implement hash algorithm

Closes #12897
This commit is contained in:
Evgeny Grin 2024-02-07 23:06:28 +01:00 committed by Daniel Stenberg
parent 30a3880f6b
commit cbe41d151d
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 650 additions and 1 deletions

View file

@ -87,7 +87,9 @@ sub scan_file {
while(<F>) {
while(s/(CURL_DISABLE_[A-Z0-9_]+)//) {
my ($sym)=($1);
$file{$sym} = $source;
if(not $sym =~ /^(CURL_DISABLE_SHA512_256)/) { # Skip this symbol, to be implemented
$file{$sym} = $source;
}
}
}
close F;