summaryrefslogtreecommitdiffstats
path: root/providers/legacyprov.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-10-04 11:50:49 +0100
committerMatt Caswell <matt@openssl.org>2019-11-21 15:45:37 +0000
commitcc35c3ed8ffdc07bb53a2908b8a186fd866ac8d5 (patch)
tree812883483feb00ebe5aa217bdd4ed4a3d90c86b3 /providers/legacyprov.c
parentab5c77b4766e0992751d86560193ca42b49cf316 (diff)
Tweak some algorithm naming inconsistencies
Make some algorithms names better match our "canonical" style. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10092)
Diffstat (limited to 'providers/legacyprov.c')
-rw-r--r--providers/legacyprov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/providers/legacyprov.c b/providers/legacyprov.c
index 11a050e203..5937328638 100644
--- a/providers/legacyprov.c
+++ b/providers/legacyprov.c
@@ -68,11 +68,11 @@ static const OSSL_ALGORITHM legacy_digests[] = {
#endif /* OPENSSL_NO_MDC2 */
#ifndef OPENSSL_NO_WHIRLPOOL
- { "whirlpool", "legacy=yes", wp_functions },
+ { "WHIRLPOOL", "legacy=yes", wp_functions },
#endif /* OPENSSL_NO_WHIRLPOOL */
#ifndef OPENSSL_NO_RMD160
- { "RIPEMD160:RIPEMD:RMD160", "legacy=yes", ripemd160_functions },
+ { "RIPEMD-160:RIPEMD160:RIPEMD:RMD160", "legacy=yes", ripemd160_functions },
#endif /* OPENSSL_NO_RMD160 */
{ NULL, NULL, NULL }