https://jxself.org/git/linux-libre.git
Raw File
Tip revision: baba0a972fb5e745cd54a1286c5572dde4fe90c1 authored by Jason Self on 14 September 2013, 12:58:24 UTC
Linux-libre 3.0.96-gnu1
Tip revision: baba0a9
ah.h
#ifndef _NET_AH_H
#define _NET_AH_H

#include <linux/skbuff.h>

/* This is the maximum truncated ICV length that we know of. */
#define MAX_AH_AUTH_LEN	64

struct crypto_ahash;

struct ah_data {
	int			icv_full_len;
	int			icv_trunc_len;

	struct crypto_ahash	*ahash;
};

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);
}

#endif
back to top