/*1* Authenc: Simple AEAD wrapper for IPsec2*3* Copyright (c) 2007 Herbert Xu <[email protected]>4*5* This program is free software; you can redistribute it and/or modify it6* under the terms of the GNU General Public License as published by the Free7* Software Foundation; either version 2 of the License, or (at your option)8* any later version.9*10*/11#ifndef _CRYPTO_AUTHENC_H12#define _CRYPTO_AUTHENC_H1314#include <linux/types.h>1516enum {17CRYPTO_AUTHENC_KEYA_UNSPEC,18CRYPTO_AUTHENC_KEYA_PARAM,19};2021struct crypto_authenc_key_param {22__be32 enckeylen;23};2425#endif /* _CRYPTO_AUTHENC_H */26272829