Home
last modified time | relevance | path

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

/external/curl/lib/vtls/
Dgtls.c837 char certbuf[256] = ""; /* big enough? */ in gtls_connect_step3() local
1069 size=sizeof(certbuf); in gtls_connect_step3()
1073 certbuf, in gtls_connect_step3()
1131 "target host name '%s'", certbuf, conn->host.dispname); in gtls_connect_step3()
1137 certbuf, conn->host.dispname); in gtls_connect_step3()
1140 infof(data, "\t common name: %s (matched)\n", certbuf); in gtls_connect_step3()
1223 size = sizeof(certbuf); in gtls_connect_step3()
1224 gnutls_x509_crt_get_dn(x509_cert, certbuf, &size); in gtls_connect_step3()
1225 infof(data, "\t subject: %s\n", certbuf); in gtls_connect_step3()
1233 size = sizeof(certbuf); in gtls_connect_step3()
[all …]
Ddarwinssl.c1715 unsigned char *certbuf, *der; local
1718 if(read_cert(cafile, &certbuf, &buflen) < 0) {
1735 free(certbuf);
1747 res = pem_to_der((const char *)certbuf + offset, &der, &derlen);
1749 free(certbuf);
1759 rc = append_cert_to_array(data, certbuf, buflen, array);
1760 free(certbuf);
1769 free(certbuf);
1776 free(certbuf);
/external/openssh/
Dsshkey.c1834 cert_parse(struct sshbuf *b, struct sshkey *key, struct sshbuf *certbuf) in cert_parse() argument
1843 if ((ret = sshbuf_putb(key->cert->certblob, certbuf)) != 0) in cert_parse()