mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
Add sha224 to the authctx union.
MFC after: 2 months Sponsored by: Chelsio Communications
This commit is contained in:
parent
87ab1a10b1
commit
174a501466
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue