Home | History | Annotate | Download | only in vtls

Lines Matching refs:der

1702   unsigned char *certbuf, *der;
1712 * - a single DER certificate,
1716 * Go through certbuf, and convert any PEM certificate in it into DER
1731 * Check if the certificate is in PEM format, and convert it to DER. If
1732 * this fails, we assume the certificate is in DER format.
1734 res = pem_to_der((const char *)certbuf + offset, &der, &derlen);
1745 /* This is not a PEM file, probably a certificate in DER format. */
1760 rc = append_cert_to_array(data, der, derlen, array);
1761 free(der);