2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _NET_AH_H
|
|
|
|
#define _NET_AH_H
|
|
|
|
|
2009-10-08 06:49:57 +08:00
|
|
|
#include <linux/skbuff.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-10-08 06:49:57 +08:00
|
|
|
struct crypto_ahash;
|
|
|
|
|
2009-11-03 11:26:03 +08:00
|
|
|
struct ah_data {
|
2005-04-17 06:20:36 +08:00
|
|
|
int icv_full_len;
|
|
|
|
int icv_trunc_len;
|
|
|
|
|
2009-10-08 06:47:16 +08:00
|
|
|
struct crypto_ahash *ahash;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2007-10-11 06:45:25 +08: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-17 06:20:36 +08:00
|
|
|
#endif
|