Home
last modified time | relevance | path

Searched refs:crlt (Results 1 – 4 of 4) sorted by relevance

/openbsd/usr.sbin/rpki-client/
H A Dcrl.c295 crl_get(struct crl_tree *crlt, const struct auth *a) in crl_get() argument
306 return RB_FIND(crl_tree, crlt, &find); in crl_insert() argument
310 crl_insert(struct crl_tree *crlt, struct crl *crl)
312 return RB_INSERT(crl_tree, crlt, crl) == NULL; in crl_free()
327 crl_tree_free(struct crl_tree *crlt) in crl_tree_free()
331 RB_FOREACH_SAFE(crl, crl_tree, crlt, tcrl) { in crl_tree_free()
332 RB_REMOVE(crl_tree, crlt, crl);
323 crl_tree_free(struct crl_tree * crlt) crl_tree_free() argument
H A Dparser.c45 static struct crl_tree crlt = RB_INITIALIZER(&crlt); variable
183 crl = crl_get(&crlt, a); in proc_parser_roa()
195 roa->expires = x509_find_expires(roa->notafter, a, &crlt); in proc_parser_roa()
223 crl = crl_get(&crlt, a); in proc_parser_spl()
235 spl->expires = x509_find_expires(spl->notafter, a, &crlt); in proc_parser_spl()
530 if (crl_insert(&crlt, crl)) in proc_parser_mft()
566 crl = crl_get(&crlt, a); in proc_parser_cert()
713 crl = crl_get(&crlt, a); in proc_parser_gbr()
750 crl = crl_get(&crlt, a); in proc_parser_aspa()
787 crl = crl_get(&crlt, a); in proc_parser_tak()
[all …]
H A Dfilemode.c46 static struct crl_tree crlt = RB_INITIALIZER(&crlt); variable
120 if (crl != NULL && !crl_insert(&crlt, crl)) in parse_load_crl()
220 crl = crl_get(&crlt, a); in parse_load_certchain()
500 c = crl_get(&crlt, a); in proc_parser_file()
558 *expires = x509_find_expires(*notafter, a, &crlt); in proc_parser_file()
781 crl_tree_free(&crlt); in proc_filemode()
H A Dx509.c1061 x509_find_expires(time_t notafter, struct auth *a, struct crl_tree *crlt) in x509_find_expires() argument
1071 crl = crl_get(crlt, a); in x509_find_expires()