Add sha224 to the authctx union.

MFC after:	2 months
Sponsored by:	Chelsio Communications
This commit is contained in:
jhb 2018-10-23 18:07:37 +00:00
parent 875935f8c5
commit 47dc026839

View File

@ -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;