Lines Matching +full:sha3 +full:- +full:256

2 # Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
18 die "Unrecognised option, must be -C or -H\n"
19 unless ($opt eq '-H' || $opt eq '-C');
22 my $cmdre = qr/^\s*int\s+([a-z_][a-z0-9_]*)_main\(\s*int\s+argc\s*,/;
24 my $YEAR = [gmtime($ENV{SOURCE_DATE_EPOCH} || time())]->[5] + 1900;
30 map { @{$unified_info{sources}->{$_}} }
32 && !$unified_info{attributes}->{sources}->{$apps_openssl}->{$_}->{nocheck} }
33 @{$unified_info{sources}->{$apps_openssl}};
46 if ($opt eq '-H') {
52 * Copyright 1995-$YEAR The OpenSSL Project Authors. All Rights Reserved.
76 if ($opt eq '-C') {
82 * Copyright 1995-$YEAR The OpenSSL Project Authors. All Rights Reserved.
154 "sha512", "sha512-224", "sha512-256",
155 "sha3-224", "sha3-256", "sha3-384", "sha3-512",
176 "aes-128-cbc", "aes-128-ecb",
177 "aes-192-cbc", "aes-192-ecb",
178 "aes-256-cbc", "aes-256-ecb",
179 "aria-128-cbc", "aria-128-cfb",
180 "aria-128-ctr", "aria-128-ecb", "aria-128-ofb",
181 "aria-128-cfb1", "aria-128-cfb8",
182 "aria-192-cbc", "aria-192-cfb",
183 "aria-192-ctr", "aria-192-ecb", "aria-192-ofb",
184 "aria-192-cfb1", "aria-192-cfb8",
185 "aria-256-cbc", "aria-256-cfb",
186 "aria-256-ctr", "aria-256-ecb", "aria-256-ofb",
187 "aria-256-cfb1", "aria-256-cfb8",
188 "camellia-128-cbc", "camellia-128-ecb",
189 "camellia-192-cbc", "camellia-192-ecb",
190 "camellia-256-cbc", "camellia-256-ecb",
192 "des", "des3", "desx", "idea", "seed", "rc4", "rc4-40",
194 "des-ecb", "des-ede", "des-ede3",
195 "des-cbc", "des-ede-cbc","des-ede3-cbc",
196 "des-cfb", "des-ede-cfb","des-ede3-cfb",
197 "des-ofb", "des-ede-ofb","des-ede3-ofb",
198 "idea-cbc","idea-ecb", "idea-cfb", "idea-ofb",
199 "seed-cbc","seed-ecb", "seed-cfb", "seed-ofb",
200 "rc2-cbc", "rc2-ecb", "rc2-cfb","rc2-ofb", "rc2-64-cbc", "rc2-40-cbc",
201 "bf-cbc", "bf-ecb", "bf-cfb", "bf-ofb",
202 "cast5-cbc","cast5-ecb", "cast5-cfb","cast5-ofb",
203 "cast-cbc", "rc5-cbc", "rc5-ecb", "rc5-cfb", "rc5-ofb",
204 "sm4-cbc", "sm4-ecb", "sm4-cfb", "sm4-ofb", "sm4-ctr"
207 (my $algo = $cmd) =~ s/-.*//g;