Fix no-gost
authorMatt Caswell <matt@openssl.org>
Mon, 21 Mar 2016 15:04:08 +0000 (15:04 +0000)
committerMatt Caswell <matt@openssl.org>
Mon, 21 Mar 2016 16:28:40 +0000 (16:28 +0000)
Configure had the wrong name for the no-gost option.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Configure
apps/progs.h
apps/progs.pl

index cf6f1687c539d9f9fa0f4679f90e61d83436f27f..e1ede8c5ac3b20bbdc0d5e4098a3ede1757a05ec 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -267,6 +267,7 @@ my @disablables = (
     "engine",
     "err",
     "filenames",
+    "gost",
     "heartbeats",
     "hmac",
     "hw(-.+)?",
@@ -276,7 +277,6 @@ my @disablables = (
     "md4",
     "md5",
     "mdc2",
-    "md[-_]ghost94",
     "multiblock",
     "nextprotoneg",
     "ocb",
index aa37d36227da27cddb0f3fb2027d14c94dcb0e2e..2711f2a734cd4af792fd39f41241df0b352fccc7 100644 (file)
@@ -218,8 +218,8 @@ static FUNCTION functions[] = {
 #ifndef OPENSSL_NO_MD5
     { FT_md, "md5", dgst_main},
 #endif
-#ifndef OPENSSL_NO_MD_GHOST94
-    { FT_md, "md_ghost94", dgst_main},
+#ifndef OPENSSL_NO_GOST
+    { FT_md, "gost", dgst_main},
 #endif
 #ifndef OPENSSL_NO_SHA
     { FT_md, "sha1", dgst_main},
index 669e82b9408bc47860605e3c8232174aefb6953a..ee6ce924745101e89c97982a82d2dd0b8a4f37fe 100644 (file)
@@ -104,7 +104,7 @@ my %md_disabler = (
     );
 foreach my $cmd (
        "md2", "md4", "md5",
-       "md_ghost94",
+       "gost",
        "sha1", "sha224", "sha256", "sha384", "sha512",
        "mdc2", "rmd160", "blake2b512", "blake2s256"
 ) {