Lines Matching defs:algorithm
78 rr->ds.algorithm = DNSSEC_ALGORITHM_RSASHA256;
224 _cleanup_free_ char *key_tag = NULL, *algorithm = NULL, *digest_type = NULL, *digest = NULL;
230 r = extract_many_words(&p, NULL, 0, &key_tag, &algorithm, &digest_type, &digest, NULL);
244 a = dnssec_algorithm_from_string(algorithm);
246 log_warning("Failed to parse DS algorithm %s on line %s:%u", algorithm, path, line);
267 rr->ds.algorithm = a;
274 _cleanup_free_ char *flags = NULL, *protocol = NULL, *algorithm = NULL, *key = NULL;
280 r = extract_many_words(&p, NULL, 0, &flags, &protocol, &algorithm, &key, NULL);
305 a = dnssec_algorithm_from_string(algorithm);
307 log_warning("Failed to parse DNSKEY algorithm %s on line %s:%u", algorithm, path, line);
321 rr->dnskey.algorithm = a;
634 if (anchor->dnskey.algorithm != revoked_dnskey->dnskey.algorithm)