From 174a50146682ea7798435f52ddd4d27c2fbb9e15 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 23 Oct 2018 18:07:37 +0000 Subject: [PATCH] Add sha224 to the authctx union. MFC after: 2 months Sponsored by: Chelsio Communications --- sys/opencrypto/xform_auth.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/opencrypto/xform_auth.h b/sys/opencrypto/xform_auth.h index 06183868611..9af0f8e6d15 100644 --- a/sys/opencrypto/xform_auth.h +++ b/sys/opencrypto/xform_auth.h @@ -36,6 +36,7 @@ #include #include +#include #include #include #include @@ -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;