2005-04-16 18:20:36 -04:00
|
|
|
#ifndef _NET_AH_H
|
|
|
|
#define _NET_AH_H
|
|
|
|
|
2009-10-07 18:49:57 -04:00
|
|
|
#include <linux/skbuff.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* This is the maximum truncated ICV length that we know of. */
|
|
|
|
#define MAX_AH_AUTH_LEN 12
|
|
|
|
|
2009-10-07 18:49:57 -04:00
|
|
|
struct crypto_ahash;
|
|
|
|
|
2009-11-02 22:26:03 -05:00
|
|
|
struct ah_data {
|
2005-04-16 18:20:36 -04:00
|
|
|
int icv_full_len;
|
|
|
|
int icv_trunc_len;
|
|
|
|
|
2009-10-07 18:47:16 -04:00
|
|
|
struct crypto_ahash *ahash;
|
2005-04-16 18:20:36 -04:00
|
|
|
};
|
|
|
|
|
2007-10-10 18:45:25 -04:00
|
|
|
struct ip_auth_hdr;
|
|
|
|
|
|
|
|
static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return (struct ip_auth_hdr *)skb_transport_header(skb);
|
|
|
|
}
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#endif
|