Fix no-gost

Configure had the wrong name for the no-gost option.

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell 2016-03-21 15:04:08 +00:00
parent ac19ae151c
commit 168c3b737e
3 changed files with 4 additions and 4 deletions

View File

@ -267,6 +267,7 @@ my @disablables = (
"engine", "engine",
"err", "err",
"filenames", "filenames",
"gost",
"heartbeats", "heartbeats",
"hmac", "hmac",
"hw(-.+)?", "hw(-.+)?",
@ -276,7 +277,6 @@ my @disablables = (
"md4", "md4",
"md5", "md5",
"mdc2", "mdc2",
"md[-_]ghost94",
"multiblock", "multiblock",
"nextprotoneg", "nextprotoneg",
"ocb", "ocb",

View File

@ -218,8 +218,8 @@ static FUNCTION functions[] = {
#ifndef OPENSSL_NO_MD5 #ifndef OPENSSL_NO_MD5
{ FT_md, "md5", dgst_main}, { FT_md, "md5", dgst_main},
#endif #endif
#ifndef OPENSSL_NO_MD_GHOST94 #ifndef OPENSSL_NO_GOST
{ FT_md, "md_ghost94", dgst_main}, { FT_md, "gost", dgst_main},
#endif #endif
#ifndef OPENSSL_NO_SHA #ifndef OPENSSL_NO_SHA
{ FT_md, "sha1", dgst_main}, { FT_md, "sha1", dgst_main},

View File

@ -104,7 +104,7 @@ my %md_disabler = (
); );
foreach my $cmd ( foreach my $cmd (
"md2", "md4", "md5", "md2", "md4", "md5",
"md_ghost94", "gost",
"sha1", "sha224", "sha256", "sha384", "sha512", "sha1", "sha224", "sha256", "sha384", "sha512",
"mdc2", "rmd160", "blake2b512", "blake2s256" "mdc2", "rmd160", "blake2b512", "blake2s256"
) { ) {