Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/netinet6/
H A Dah_core.c110 static int ah_keyed_md5_init(struct ah_algorithm_state *, struct secasvar *);
111 static void ah_keyed_md5_loop(struct ah_algorithm_state *, caddr_t, size_t);
112 static void ah_keyed_md5_result(struct ah_algorithm_state *, caddr_t, size_t);
115 static int ah_keyed_sha1_init(struct ah_algorithm_state *, struct secasvar *);
116 static void ah_keyed_sha1_loop(struct ah_algorithm_state *, caddr_t, size_t);
117 static void ah_keyed_sha1_result(struct ah_algorithm_state *, caddr_t, size_t);
120 static int ah_hmac_state_init(struct ah_algorithm_state *, struct secasvar *);
123 static void ah_hmac_loop(struct ah_algorithm_state *, caddr_t, size_t);
124 static void ah_hmac_result(struct ah_algorithm_state *, caddr_t, size_t);
140 static int ah_none_init(struct ah_algorithm_state *, struct secasvar *);
[all …]
H A Dah.h70 struct ah_algorithm_state { struct
89 int (*init)(struct ah_algorithm_state *, struct secasvar *); argument
90 void (*update)(struct ah_algorithm_state *, caddr_t, size_t);
91 void (*result)(struct ah_algorithm_state *, caddr_t, size_t);
H A Desp_core.c1418 struct ah_algorithm_state s; in esp_auth()
1526 struct ah_algorithm_state state = {}; in esp_auth_data()