Home | History | Annotate | Download | only in racoon

Lines Matching full:list

14  *    notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
65 int prsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type);
68 rsa_key_insert(struct genlist *list, struct netaddr *src,
86 genlist_append(list, rsa_key);
106 rsa_key_dump(struct genlist *list)
108 genlist_foreach(list, rsa_key_dump_one, NULL);
120 rsa_list_count(struct genlist *list)
123 genlist_foreach(list, rsa_list_count_one, &count);
158 /* Always traverse the whole list */
165 struct genlist *list;
176 list = iph1->rmconf->rsa_private;
178 list = iph1->rmconf->rsa_public;
180 genlist_foreach(list, rsa_lookup_key_one, &r);
189 rsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type)
194 ret = prsa_parse_file(list, fname, type);
196 rsa_key_dump(list);
201 rsa_try_check_rsasign(vchar_t *source, vchar_t *sig, struct genlist *list)
206 for(key = genlist_next(list, &gp); key; key = genlist_next(NULL, &gp)) {