| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| tlsa_52.c | 196 dns_rdata_tlsa_t *tlsa = source; local 198 REQUIRE(tlsa != NULL); 199 REQUIRE(tlsa->common.rdtype == type); 200 REQUIRE(tlsa->common.rdclass == rdclass); 205 RETERR(uint8_tobuffer(tlsa->usage, target)); 206 RETERR(uint8_tobuffer(tlsa->selector, target)); 207 RETERR(uint8_tobuffer(tlsa->match, target)); 209 return (mem_tobuffer(target, tlsa->data, tlsa->length)); 214 dns_rdata_tlsa_t *tlsa = target local 246 dns_rdata_tlsa_t *tlsa = source; local 269 dns_rdata_tlsa_t *tlsa = target; local 283 dns_rdata_tlsa_t *tlsa = source; local [all...] |
| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| tlsa_52.c | 195 dns_rdata_tlsa_t *tlsa = source; local 197 REQUIRE(tlsa != NULL); 198 REQUIRE(tlsa->common.rdtype == type); 199 REQUIRE(tlsa->common.rdclass == rdclass); 204 RETERR(uint8_tobuffer(tlsa->usage, target)); 205 RETERR(uint8_tobuffer(tlsa->selector, target)); 206 RETERR(uint8_tobuffer(tlsa->match, target)); 208 return mem_tobuffer(target, tlsa->data, tlsa->length); 213 dns_rdata_tlsa_t *tlsa = target local 241 dns_rdata_tlsa_t *tlsa = source; local 264 dns_rdata_tlsa_t *tlsa = target; local 276 dns_rdata_tlsa_t *tlsa = source; local [all...] |
| /src/external/ibm-public/postfix/dist/src/smtp/ |
| smtp_tlsrpt.c | 30 /* remote TLSRPT policy information, b) remote TLSA or STS policy 291 TLS_TLSA *tlsa; local 293 for (tlsa = dane->tlsa; tlsa != 0; tlsa = tlsa->next) { 294 vstring_sprintf(buf, "%d %d %d ", tlsa->usage, 295 tlsa->selector, tlsa->mtype) [all...] |
| /src/external/ibm-public/postfix/dist/src/tls/ |
| tls.h | 49 #define TLS_LEV_HALF_DANE 4 /* DANE TLSA MX host, insecure MX RR */ 50 #define TLS_LEV_DANE 5 /* Opportunistic TLSA policy */ 51 #define TLS_LEV_DANE_ONLY 6 /* Required TLSA policy */ 189 #define TLS_DANE_FLAG_ERROR (1<<2) /* TLSA record lookup error */ 198 * Certificate and public key digests (typically from TLSA RRs), grouped by 211 TLS_TLSA *tlsa; /* TLSA records */ member in struct:TLS_DANE 212 char *base_domain; /* Base domain of TLSA RRset */ 279 /* DANE TLSA trust input and verification state */ 280 const TLS_DANE *dane; /* DANE TLSA digests * [all...] |