Home
last modified time | relevance | path

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

/systemd-251/src/resolve/
Dresolved-dns-rr.c440 free(rr->sshfp.fingerprint); in dns_resource_record_free()
639 return a->sshfp.algorithm == b->sshfp.algorithm && in dns_resource_record_payload_equal()
640 a->sshfp.fptype == b->sshfp.fptype && in dns_resource_record_payload_equal()
641 FIELD_EQUAL(a->sshfp, b->sshfp, fingerprint); in dns_resource_record_payload_equal()
945 t = hexmem(rr->sshfp.fingerprint, rr->sshfp.fingerprint_size); in dns_resource_record_to_string()
951 rr->sshfp.algorithm, in dns_resource_record_to_string()
952 rr->sshfp.fptype, in dns_resource_record_to_string()
1092 t = hexmem(rr->sshfp.fingerprint, rr->sshfp.fingerprint_size); in dns_resource_record_to_string()
1188 *out = rr->sshfp.fingerprint; in dns_resource_record_payload()
1189 return rr->sshfp.fingerprint_size; in dns_resource_record_payload()
[all …]
Dresolved-dns-packet.c1043 r = dns_packet_append_uint8(p, rr->sshfp.algorithm, NULL); in dns_packet_append_rr()
1047 r = dns_packet_append_uint8(p, rr->sshfp.fptype, NULL); in dns_packet_append_rr()
1051 … r = dns_packet_append_blob(p, rr->sshfp.fingerprint, rr->sshfp.fingerprint_size, NULL); in dns_packet_append_rr()
1910 r = dns_packet_read_uint8(p, &rr->sshfp.algorithm, NULL); in dns_packet_read_rr()
1914 r = dns_packet_read_uint8(p, &rr->sshfp.fptype, NULL); in dns_packet_read_rr()
1922 &rr->sshfp.fingerprint, &rr->sshfp.fingerprint_size, in dns_packet_read_rr()
1925 if (rr->sshfp.fingerprint_size <= 0) in dns_packet_read_rr()
Dresolved-dns-rr.h180 } sshfp; member