Searched refs:crl (Results 1 – 7 of 7) sorted by relevance
290 mbedtls_x509_crl *crl = chain; in mbedtls_x509_crl_parse_der() local295 if (crl == NULL || buf == NULL) { in mbedtls_x509_crl_parse_der()306 while (crl->version != 0 && crl->next != NULL) { in mbedtls_x509_crl_parse_der()307 crl = crl->next; in mbedtls_x509_crl_parse_der()310 if (crl->version != 0 && crl->next == NULL) { in mbedtls_x509_crl_parse_der()311 crl->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_parse_der()313 if (crl->next == NULL) { in mbedtls_x509_crl_parse_der()314 mbedtls_x509_crl_free(crl); in mbedtls_x509_crl_parse_der()318 mbedtls_x509_crl_init(crl->next); in mbedtls_x509_crl_parse_der()319 crl = crl->next; in mbedtls_x509_crl_parse_der()[all …]
759 mbedtls_x509_crl_free(&pkcs7->signed_data.crl); in mbedtls_pkcs7_free()
1990 int mbedtls_x509_crt_is_revoked(const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl) in mbedtls_x509_crt_is_revoked() argument1992 const mbedtls_x509_crl_entry *cur = &crl->entry; in mbedtls_x509_crt_is_revoked()
160 const mbedtls_x509_crl *crl);168 void mbedtls_x509_crl_init(mbedtls_x509_crl *crl);175 void mbedtls_x509_crl_free(mbedtls_x509_crl *crl);
129 mbedtls_x509_crl MBEDTLS_PRIVATE(crl);
872 int mbedtls_x509_crt_is_revoked(const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl);
3207 * Add a check for MBEDTLS_X509_CRL_PARSE_C in ssl_server2, guarding the crl