Lines Matching refs:sshfp
440 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()
1401 siphash24_compress(&rr->sshfp.algorithm, sizeof(rr->sshfp.algorithm), state); in dns_resource_record_hash_func()
1402 siphash24_compress(&rr->sshfp.fptype, sizeof(rr->sshfp.fptype), state); in dns_resource_record_hash_func()
1403 siphash24_compress_safe(rr->sshfp.fingerprint, rr->sshfp.fingerprint_size, state); in dns_resource_record_hash_func()
1572 copy->sshfp.algorithm = rr->sshfp.algorithm; in dns_resource_record_copy()
1573 copy->sshfp.fptype = rr->sshfp.fptype; in dns_resource_record_copy()
1574 copy->sshfp.fingerprint = memdup(rr->sshfp.fingerprint, rr->sshfp.fingerprint_size); in dns_resource_record_copy()
1575 if (!copy->sshfp.fingerprint) in dns_resource_record_copy()
1577 copy->sshfp.fingerprint_size = rr->sshfp.fingerprint_size; in dns_resource_record_copy()