mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
fixed size of AH_ALEN_MAX, which is 64 bytes for SHA-512.
Obtained from: Matthias Drochner <M.Drochner@fz-juelich.de> MFC after: 3d
This commit is contained in:
parent
6b4b73920f
commit
d25b0b98bc
1 changed files with 2 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ struct auth_hash {
|
|||
void (*Final) (u_int8_t *, void *);
|
||||
};
|
||||
|
||||
#define AH_ALEN_MAX 20 /* max authenticator hash length */
|
||||
/* XXX use a define common with other hash stuff ! */
|
||||
#define AH_ALEN_MAX 64 /* max authenticator hash length */
|
||||
|
||||
struct enc_xform {
|
||||
int type;
|
||||
|
|
|
|||
Loading…
Reference in a new issue