Lines Matching refs:data
627 BIO_snprintf(tmpbuf, sizeof(tmpbuf)-1, "Not TLS data or unknown version (version=%d, content_type=%d)", version, content_type);
742 const unsigned char *data, int len, void *arg)
749 BIO_dump(bio, (const char *)data, len);
1142 static char *hexencode(const unsigned char *data, size_t len)
1155 cp = out = app_malloc(ilen, "TLSA hex data buffer");
1158 *cp++ = hex[(*data >> 4) & 0x0f];
1159 *cp++ = hex[*data++ & 0x0f];
1185 const unsigned char *data = NULL;
1189 mdpth = SSL_get0_dane_tlsa(s, &usage, &selector, &mtype, &data, &dlen);
1192 * The TLSA data field can be quite long when it is a certificate,
1195 * and lengths, we show the last 12 bytes of the data instead, as these
1200 hexdata = hexencode(data + dlen - TLSA_TAIL_SIZE, TLSA_TAIL_SIZE);
1202 hexdata = hexencode(data, dlen);