blob: 7ac52214ba0f17b1bbcc4bdff73b6457ed2a12a3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_AH_H
2#define _NET_AH_H
3
Herbert Xu9409f382006-08-06 19:49:12 +10004#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <net/xfrm.h>
6
7/* This is the maximum truncated ICV length that we know of. */
8#define MAX_AH_AUTH_LEN 12
9
10struct ah_data
11{
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 u8 *work_icv;
13 int icv_full_len;
14 int icv_trunc_len;
15
Herbert Xu07d4ee52006-08-20 14:24:50 +100016 struct crypto_hash *tfm;
Steffen Klassert49cbf952009-10-07 22:47:16 +000017 struct crypto_ahash *ahash;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018};
19
Herbert Xu07d4ee52006-08-20 14:24:50 +100020static inline int ah_mac_digest(struct ah_data *ahp, struct sk_buff *skb,
21 u8 *auth_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
Herbert Xu07d4ee52006-08-20 14:24:50 +100023 struct hash_desc desc;
24 int err;
25
26 desc.tfm = ahp->tfm;
27 desc.flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29 memset(auth_data, 0, ahp->icv_trunc_len);
Herbert Xu07d4ee52006-08-20 14:24:50 +100030 err = crypto_hash_init(&desc);
31 if (unlikely(err))
32 goto out;
33 err = skb_icv_walk(skb, &desc, 0, skb->len, crypto_hash_update);
34 if (unlikely(err))
35 goto out;
36 err = crypto_hash_final(&desc, ahp->work_icv);
37
38out:
39 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Herbert Xu87bdc482007-10-10 15:45:25 -070042struct ip_auth_hdr;
43
44static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
45{
46 return (struct ip_auth_hdr *)skb_transport_header(skb);
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#endif