[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Wed Jul 5 23:20:43 UTC 2017


The branch master has been updated
       via  67fdc99827916a397c23491edd97f2a5d374533a (commit)
      from  b2ac85adac85f95af999df96367872d38068b028 (commit)


- Log -----------------------------------------------------------------
commit 67fdc99827916a397c23491edd97f2a5d374533a
Author: Rich Salz <rsalz at openssl.org>
Date:   Wed Jul 5 17:12:35 2017 -0400

    Add two trivial fixes from old commits
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/3865)

-----------------------------------------------------------------------

Summary of changes:
 crypto/objects/obj_dat.pl | 1 +
 doc/man1/dgst.pod         | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/crypto/objects/obj_dat.pl b/crypto/objects/obj_dat.pl
index 3e201c3..947ccee 100644
--- a/crypto/objects/obj_dat.pl
+++ b/crypto/objects/obj_dat.pl
@@ -6,6 +6,7 @@
 # in the file LICENSE in the source distribution or at
 # https://www.openssl.org/source/license.html
 
+use integer;
 use strict;
 use warnings;
 
diff --git a/doc/man1/dgst.pod b/doc/man1/dgst.pod
index a11f190..677f2b2 100644
--- a/doc/man1/dgst.pod
+++ b/doc/man1/dgst.pod
@@ -21,6 +21,7 @@ B<openssl> B<dgst>
 [B<-verify filename>]
 [B<-prverify filename>]
 [B<-signature filename>]
+[B<-hmac key>]
 [B<-fips-fingerprint>]
 [B<-engine id>]
 [B<-engine_impl>]
@@ -115,6 +116,10 @@ Verify the signature using the private key in "filename".
 
 The actual signature to verify.
 
+=item B<-hmac key>
+
+Create a hashed MAC using "key".
+
 =item B<-mac alg>
 
 Create MAC (keyed Message Authentication Code). The most popular MAC


More information about the openssl-commits mailing list