Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Oct 2018 18:07:38 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339665 - head/sys/opencrypto
Message-ID:  <201810231807.w9NI7cQM073744@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810231807.w9NI7cQM073744>