svn commit: r339665 - head/sys/opencrypto

John Baldwin jhb at FreeBSD.org
Tue Oct 23 18:07:39 UTC 2018


Author: jhb
Date: Tue Oct 23 18:07:37 2018
New Revision: 339665
URL: https://svnweb.freebsd.org/changeset/base/339665

Log:
  Add sha224 to the authctx union.
  
  MFC after:	2 months
  Sponsored by:	Chelsio Communications

Modified:
  head/sys/opencrypto/xform_auth.h

Modified: head/sys/opencrypto/xform_auth.h
==============================================================================
--- head/sys/opencrypto/xform_auth.h	Tue Oct 23 18:07:16 2018	(r339664)
+++ head/sys/opencrypto/xform_auth.h	Tue Oct 23 18:07:37 2018	(r339665)
@@ -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-head mailing list