Lines Matching refs:algorithm
43 uint8_t algorithm, in add_root_ksk() argument
56 rr->ds.algorithm = algorithm; in add_root_ksk()
238 _cleanup_free_ char *key_tag = NULL, *algorithm = NULL, *digest_type = NULL; in dns_trust_anchor_load_positive() local
244 r = extract_many_words(&p, NULL, 0, &key_tag, &algorithm, &digest_type, NULL); in dns_trust_anchor_load_positive()
258 a = dnssec_algorithm_from_string(algorithm); in dns_trust_anchor_load_positive()
260 … log_warning("Failed to parse DS algorithm %s on line %s:%u", algorithm, path, line); in dns_trust_anchor_load_positive()
286 rr->ds.algorithm = a; in dns_trust_anchor_load_positive()
292 _cleanup_free_ char *flags = NULL, *protocol = NULL, *algorithm = NULL; in dns_trust_anchor_load_positive() local
298 r = extract_many_words(&p, NULL, 0, &flags, &protocol, &algorithm, NULL); in dns_trust_anchor_load_positive()
323 a = dnssec_algorithm_from_string(algorithm); in dns_trust_anchor_load_positive()
325 … log_warning("Failed to parse DNSKEY algorithm %s on line %s:%u", algorithm, path, line); in dns_trust_anchor_load_positive()
344 rr->dnskey.algorithm = a; in dns_trust_anchor_load_positive()
665 if (anchor->dnskey.algorithm != revoked_dnskey->dnskey.algorithm) in dns_trust_anchor_check_revoked_one()