diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2018-10-23 18:07:37 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2018-10-23 18:07:37 +0000 |
| commit | 174a50146682ea7798435f52ddd4d27c2fbb9e15 (patch) | |
| tree | dcbba666ba4b2cdd1684e99d857025e56c5fd0e9 | |
| parent | 87ab1a10b13c63b905186c2c2e5def95a530373a (diff) | |
Notes
| -rw-r--r-- | sys/opencrypto/xform_auth.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/opencrypto/xform_auth.h b/sys/opencrypto/xform_auth.h index 061838686117..9af0f8e6d155 100644 --- a/sys/opencrypto/xform_auth.h +++ b/sys/opencrypto/xform_auth.h @@ -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; |
