diff options
author | joshua <> | 2025-05-25 04:54:41 +0000 |
---|---|---|
committer | joshua <> | 2025-05-25 04:54:41 +0000 |
commit | 827a8c81e5254d23f0ed8840e297afce76f2f8f1 (patch) | |
tree | d7b8ea37e76f329ab74bba52d03e16a12328569a /src/usr.bin/openssl/openssl.c | |
parent | 6bb5c601c21b47afb4744e7bc8a8350c392822bd (diff) | |
download | openbsd-827a8c81e5254d23f0ed8840e297afce76f2f8f1.tar.gz openbsd-827a8c81e5254d23f0ed8840e297afce76f2f8f1.tar.bz2 openbsd-827a8c81e5254d23f0ed8840e297afce76f2f8f1.zip |
openssl speed: remove whirlpool
whirlpool was previously removed from libcrypto, and OPENSSL_NO_WHIRLPOOL
will always be defined. Remove whirlpool support from the openssl speed
command entirely.
ok jsing tb
Diffstat (limited to 'src/usr.bin/openssl/openssl.c')
-rw-r--r-- | src/usr.bin/openssl/openssl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c index 75a0e4d266..a1ef139009 100644 --- a/src/usr.bin/openssl/openssl.c +++ b/src/usr.bin/openssl/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.39 2025/01/02 13:10:03 tb Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.40 2025/05/25 04:54:41 joshua Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -235,9 +235,6 @@ FUNCTION functions[] = { | |||
235 | { FUNC_TYPE_MD, "sm3", dgst_main }, | 235 | { FUNC_TYPE_MD, "sm3", dgst_main }, |
236 | { FUNC_TYPE_MD, "sm3WithRSAEncryption", dgst_main }, | 236 | { FUNC_TYPE_MD, "sm3WithRSAEncryption", dgst_main }, |
237 | #endif | 237 | #endif |
238 | #ifndef OPENSSL_NO_WHIRLPOOL | ||
239 | { FUNC_TYPE_MD, "whirlpool", dgst_main }, | ||
240 | #endif | ||
241 | 238 | ||
242 | /* Ciphers. */ | 239 | /* Ciphers. */ |
243 | { FUNC_TYPE_CIPHER, "base64", enc_main }, | 240 | { FUNC_TYPE_CIPHER, "base64", enc_main }, |