svn commit: r342744 - stable/12/sys/opencrypto

John Baldwin jhb at FreeBSD.org
Thu Jan 3 22:32:14 UTC 2019


Author: jhb
Date: Thu Jan  3 22:32:12 2019
New Revision: 342744
URL: https://svnweb.freebsd.org/changeset/base/342744

Log:
  MFC 339665: Add sha224 to the authctx union.

Modified:
  stable/12/sys/opencrypto/xform_auth.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/opencrypto/xform_auth.h
==============================================================================
--- stable/12/sys/opencrypto/xform_auth.h	Thu Jan  3 21:31:17 2019	(r342743)
+++ stable/12/sys/opencrypto/xform_auth.h	Thu Jan  3 22:32:12 2019	(r342744)
@@ -36,6 +36,7 @@
 
 #include <sys/md5.h>
 #include <crypto/sha1.h>
+#include <crypto/sha2/sha224.h>
 #include <crypto/sha2/sha256.h>
 #include <crypto/sha2/sha384.h>
 #include <crypto/sha2/sha512.h>
@@ -89,6 +90,7 @@ union authctx {
 	MD5_CTX md5ctx;
 	SHA1_CTX sha1ctx;
 	RMD160_CTX rmd160ctx;
+	SHA224_CTX sha224ctx;
 	SHA256_CTX sha256ctx;
 	SHA384_CTX sha384ctx;
 	SHA512_CTX sha512ctx;


More information about the svn-src-all mailing list