diff options
Diffstat (limited to 'openssl/apps/dgst.c')
-rw-r--r-- | openssl/apps/dgst.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/apps/dgst.c b/openssl/apps/dgst.c index b08e9a7c7..81bd870f9 100644 --- a/openssl/apps/dgst.c +++ b/openssl/apps/dgst.c @@ -216,10 +216,10 @@ int MAIN(int argc, char **argv) out_bin = 1; else if (strcmp(*argv,"-d") == 0) debug=1; - else if (strcmp(*argv,"-non-fips-allow") == 0) - non_fips_allow=1; else if (!strcmp(*argv,"-fips-fingerprint")) hmac_key = "etaonrishdlcupfm"; + else if (strcmp(*argv,"-non-fips-allow") == 0) + non_fips_allow=1; else if (!strcmp(*argv,"-hmac")) { if (--argc < 1) |