Document openssl dgst -hmac option
authorThorsten Glaser <tg@mirbsd.de>
Fri, 22 May 2009 16:28:05 +0000 (16:28 +0000)
committerKurt Roeckx <kurt@roeckx.be>
Tue, 30 Dec 2014 16:00:23 +0000 (17:00 +0100)
Signed-off-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Richard Levitte <levitte@openssl.org>
apps/dgst.c
doc/apps/dgst.pod

index f4aec779c1dbe55f3ed2b9e02ade88d9f0869cea..e31a6b182eb8200b763cabe998c489720d8233da 100644 (file)
@@ -273,6 +273,8 @@ int MAIN(int argc, char **argv)
                BIO_printf(bio_err,"-d              to output debug info\n");
                BIO_printf(bio_err,"-hex            output as hex dump\n");
                BIO_printf(bio_err,"-binary         output in binary form\n");
+               BIO_printf(bio_err,"-hmac arg       set the HMAC key to arg\n");
+               BIO_printf(bio_err,"-non-fips-allow allow use of non FIPS digest\n");
                BIO_printf(bio_err,"-sign   file    sign digest using private key in file\n");
                BIO_printf(bio_err,"-verify file    verify a signature using public key in file\n");
                BIO_printf(bio_err,"-prverify file  verify a signature using private key in file\n");
index 2414c533777847b35305f271f05c7c54f61f0bd0..9e15798d8279d1e6cca7f5ba7c8102d0f164ba88 100644 (file)
@@ -13,6 +13,8 @@ B<openssl> B<dgst>
 [B<-hex>]
 [B<-binary>]
 [B<-r>]
+[B<-hmac arg>]
+[B<-non-fips-allow>]
 [B<-out filename>]
 [B<-sign filename>]
 [B<-keyform arg>]
@@ -62,6 +64,15 @@ output the digest or signature in binary form.
 
 output the digest in the "coreutils" format used by programs like B<sha1sum>.
 
+=item B<-hmac arg>
+
+set the HMAC key to "arg".
+
+=item B<-non-fips-allow>
+
+Allow use of non FIPS digest when in FIPS mode.  This has no effect when not in
+FIPS mode.
+
 =item B<-out filename>
 
 filename to output to, or standard output by default.