ah: Remove obsolete code
[safe/jmp/linux-2.6] / include / net / ah.h
1 #ifndef _NET_AH_H
2 #define _NET_AH_H
3
4 #include <linux/skbuff.h>
5
6 /* This is the maximum truncated ICV length that we know of. */
7 #define MAX_AH_AUTH_LEN 12
8
9 struct crypto_ahash;
10
11 struct ah_data
12 {
13         int                     icv_full_len;
14         int                     icv_trunc_len;
15
16         struct crypto_ahash     *ahash;
17 };
18
19 struct ip_auth_hdr;
20
21 static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
22 {
23         return (struct ip_auth_hdr *)skb_transport_header(skb);
24 }
25
26 #endif