[PATCH] include/asm-h8300/page.h: remove unused KTHREAD_SIZE #define
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / net / ah.h
blobceff00afae09f283e0d23cb44db2aa009c079f4c
1 #ifndef _NET_AH_H
2 #define _NET_AH_H
4 #include <net/xfrm.h>
6 /* This is the maximum truncated ICV length that we know of. */
7 #define MAX_AH_AUTH_LEN 12
9 struct ah_data
11 u8 *key;
12 int key_len;
13 u8 *work_icv;
14 int icv_full_len;
15 int icv_trunc_len;
17 void (*icv)(struct ah_data*,
18 struct sk_buff *skb, u8 *icv);
20 struct crypto_tfm *tfm;
23 static inline void
24 ah_hmac_digest(struct ah_data *ahp, struct sk_buff *skb, u8 *auth_data)
26 struct crypto_tfm *tfm = ahp->tfm;
28 memset(auth_data, 0, ahp->icv_trunc_len);
29 crypto_hmac_init(tfm, ahp->key, &ahp->key_len);
30 skb_icv_walk(skb, tfm, 0, skb->len, crypto_hmac_update);
31 crypto_hmac_final(tfm, ahp->key, &ahp->key_len, ahp->work_icv);
32 memcpy(auth_data, ahp->work_icv, ahp->icv_trunc_len);
35 #endif