Home
last modified time | relevance | path

Searched refs:ah_algorithm_state (Results 1 – 3 of 3) sorted by relevance

/xnu-10002.41.9/bsd/netinet6/
H A Dah_core.c119 static int ah_none_init(struct ah_algorithm_state *, struct secasvar *);
120 static void ah_none_loop(struct ah_algorithm_state *, caddr_t, size_t);
121 static void ah_none_result(struct ah_algorithm_state *, caddr_t, size_t);
123 static int ah_keyed_md5_init(struct ah_algorithm_state *, struct secasvar *);
124 static void ah_keyed_md5_loop(struct ah_algorithm_state *, caddr_t, size_t);
125 static void ah_keyed_md5_result(struct ah_algorithm_state *, caddr_t, size_t);
127 static int ah_keyed_sha1_init(struct ah_algorithm_state *, struct secasvar *);
128 static void ah_keyed_sha1_loop(struct ah_algorithm_state *, caddr_t, size_t);
129 static void ah_keyed_sha1_result(struct ah_algorithm_state *, caddr_t, size_t);
131 static int ah_hmac_md5_init(struct ah_algorithm_state *, struct secasvar *);
[all …]
H A Dah.h63 struct ah_algorithm_state { struct
74 int (*init)(struct ah_algorithm_state *, struct secasvar *); argument
75 void (*update)(struct ah_algorithm_state *, caddr_t, size_t);
76 void (*result)(struct ah_algorithm_state *, caddr_t, size_t);
H A Desp_core.c1418 struct ah_algorithm_state s; in esp_auth()
1517 struct ah_algorithm_state state = {}; in esp_auth_data()