Home
last modified time | relevance | path

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

/external/curl/lib/vtls/
Dsectransp.c2156 unsigned char *certbuf, *der; local
2159 if(read_cert(cafile, &certbuf, &buflen) < 0) {
2176 free(certbuf);
2188 res = pem_to_der((const char *)certbuf + offset, &der, &derlen);
2190 free(certbuf);
2200 rc = append_cert_to_array(data, certbuf, buflen, array);
2201 free(certbuf);
2210 free(certbuf);
2217 free(certbuf);
/external/openssh/
Dsshkey.c2195 cert_parse(struct sshbuf *b, struct sshkey *key, struct sshbuf *certbuf) in cert_parse() argument
2204 if ((ret = sshbuf_putb(key->cert->certblob, certbuf)) != 0) in cert_parse()