Home | History | Annotate | Download | only in vtls

Lines Matching refs:der

156 /* both new and old APIs return rsa keys missing the spki header (not DER) */
169 /* the *new* version doesn't return DER encoded ecdsa certs like the old... */
2045 unsigned char *certbuf, *der;
2055 * - a single DER certificate,
2059 * Go through certbuf, and convert any PEM certificate in it into DER
2074 * Check if the certificate is in PEM format, and convert it to DER. If
2075 * this fails, we assume the certificate is in DER format.
2077 res = pem_to_der((const char *)certbuf + offset, &der, &derlen);
2088 /* This is not a PEM file, probably a certificate in DER format. */
2103 rc = append_cert_to_array(data, der, derlen, array);
2104 free(der);