Home
last modified time | relevance | path

Searched refs:mbedtls_x509_crl (Results 1 – 25 of 29) sorted by relevance

12

/external/mbedtls/include/mbedtls/
Dx509_crl.h64 typedef struct mbedtls_x509_crl { struct
91 struct mbedtls_x509_crl *next; argument
93 mbedtls_x509_crl; typedef
109 int mbedtls_x509_crl_parse_der(mbedtls_x509_crl *chain,
127 int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen);
144 int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path);
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);
Dx509_crt.h672 mbedtls_x509_crl *ca_crl,
713 mbedtls_x509_crl *ca_crl,
747 mbedtls_x509_crl *ca_crl,
872 int mbedtls_x509_crt_is_revoked(const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl);
Dpkcs7.h130 mbedtls_x509_crl MBEDTLS_PRIVATE(crl);
Dssl.h1469 mbedtls_x509_crl *MBEDTLS_PRIVATE(ca_crl); /*!< trusted CAs CRLs */
3308 mbedtls_x509_crl *ca_crl);
3869 mbedtls_x509_crl *ca_crl);
/external/openthread/third_party/mbedtls/repo/include/mbedtls/
Dx509_crl.h64 typedef struct mbedtls_x509_crl { struct
91 struct mbedtls_x509_crl *next; argument
93 mbedtls_x509_crl; typedef
109 int mbedtls_x509_crl_parse_der(mbedtls_x509_crl *chain,
127 int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen);
144 int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path);
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);
Dx509_crt.h672 mbedtls_x509_crl *ca_crl,
713 mbedtls_x509_crl *ca_crl,
747 mbedtls_x509_crl *ca_crl,
872 int mbedtls_x509_crt_is_revoked(const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl);
Dpkcs7.h129 mbedtls_x509_crl MBEDTLS_PRIVATE(crl);
Dssl.h1548 mbedtls_x509_crl *MBEDTLS_PRIVATE(ca_crl); /*!< trusted CAs CRLs */
3477 mbedtls_x509_crl *ca_crl);
4043 mbedtls_x509_crl *ca_crl);
/external/openthread/third_party/mbedtls/repo/library/
Dx509_crl.c283 int mbedtls_x509_crl_parse_der(mbedtls_x509_crl *chain, in mbedtls_x509_crl_parse_der()
290 mbedtls_x509_crl *crl = chain; in mbedtls_x509_crl_parse_der()
311 crl->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_parse_der()
505 int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen) in mbedtls_x509_crl_parse()
567 int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path) in mbedtls_x509_crl_parse_file()
595 const mbedtls_x509_crl *crl) in mbedtls_x509_crl_info()
669 void mbedtls_x509_crl_init(mbedtls_x509_crl *crl) in mbedtls_x509_crl_init()
671 memset(crl, 0, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_init()
677 void mbedtls_x509_crl_free(mbedtls_x509_crl *crl) in mbedtls_x509_crl_free()
679 mbedtls_x509_crl *crl_cur = crl; in mbedtls_x509_crl_free()
[all …]
Dx509_crt.c1988 int mbedtls_x509_crt_is_revoked(const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl) in mbedtls_x509_crt_is_revoked()
2009 mbedtls_x509_crl *crl_list, in x509_crt_verifycrl()
2507 mbedtls_x509_crl *ca_crl, in x509_crt_verify_chain()
3055 mbedtls_x509_crl *ca_crl, in x509_crt_verify_restartable_ca_cb()
3151 mbedtls_x509_crl *ca_crl, in mbedtls_x509_crt_verify()
3168 mbedtls_x509_crl *ca_crl, in mbedtls_x509_crt_verify_with_profile()
3202 mbedtls_x509_crl *ca_crl, in mbedtls_x509_crt_verify_restartable()
Dssl_tls13_generic.c631 mbedtls_x509_crl *ca_crl; in ssl_tls13_validate_certificate()
Dssl_misc.h831 mbedtls_x509_crl *sni_ca_crl; /*!< trusted CAs CRLs from SNI */
/external/mbedtls/library/
Dx509_crl.c282 int mbedtls_x509_crl_parse_der(mbedtls_x509_crl *chain, in mbedtls_x509_crl_parse_der()
289 mbedtls_x509_crl *crl = chain; in mbedtls_x509_crl_parse_der()
310 crl->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_parse_der()
504 int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen) in mbedtls_x509_crl_parse()
566 int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path) in mbedtls_x509_crl_parse_file()
594 const mbedtls_x509_crl *crl) in mbedtls_x509_crl_info()
668 void mbedtls_x509_crl_init(mbedtls_x509_crl *crl) in mbedtls_x509_crl_init()
670 memset(crl, 0, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_init()
676 void mbedtls_x509_crl_free(mbedtls_x509_crl *crl) in mbedtls_x509_crl_free()
678 mbedtls_x509_crl *crl_cur = crl; in mbedtls_x509_crl_free()
[all …]
Dx509_crt.c1987 int mbedtls_x509_crt_is_revoked(const mbedtls_x509_crt *crt, const mbedtls_x509_crl *crl) in mbedtls_x509_crt_is_revoked()
2008 mbedtls_x509_crl *crl_list, in x509_crt_verifycrl()
2506 mbedtls_x509_crl *ca_crl, in x509_crt_verify_chain()
3054 mbedtls_x509_crl *ca_crl, in x509_crt_verify_restartable_ca_cb()
3150 mbedtls_x509_crl *ca_crl, in mbedtls_x509_crt_verify()
3167 mbedtls_x509_crl *ca_crl, in mbedtls_x509_crt_verify_with_profile()
3201 mbedtls_x509_crl *ca_crl, in mbedtls_x509_crt_verify_restartable()
Dssl_tls13_generic.c631 mbedtls_x509_crl *ca_crl; in ssl_tls13_validate_certificate()
Dssl_misc.h799 mbedtls_x509_crl *sni_ca_crl; /*!< trusted CAs CRLs from SNI */
/external/mbedtls/programs/fuzz/
Dfuzz_x509crl.c10 mbedtls_x509_crl crl; in LLVMFuzzerTestOneInput()
/external/openthread/third_party/mbedtls/repo/programs/fuzz/
Dfuzz_x509crl.c8 mbedtls_x509_crl crl; in LLVMFuzzerTestOneInput()
/external/mbedtls/programs/x509/
Dcrl_app.c52 mbedtls_x509_crl crl; in main()
Dcert_app.c129 mbedtls_x509_crl cacrl; in main()
150 memset(&cacrl, 0, sizeof(mbedtls_x509_crl)); in main()
/external/openthread/third_party/mbedtls/repo/programs/x509/
Dcrl_app.c52 mbedtls_x509_crl crl; in main()
Dcert_app.c129 mbedtls_x509_crl cacrl; in main()
150 memset(&cacrl, 0, sizeof(mbedtls_x509_crl)); in main()
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_x509parse.function554 mbedtls_x509_crl crl;
579 mbedtls_x509_crl crl;
704 mbedtls_x509_crl crl;
1243 mbedtls_x509_crl crl;
/external/mbedtls/tests/suites/
Dtest_suite_x509parse.function523 mbedtls_x509_crl crl;
548 mbedtls_x509_crl crl;
673 mbedtls_x509_crl crl;
1195 mbedtls_x509_crl crl;
/external/mbedtls/programs/ssl/
Dssl_server2.c746 mbedtls_x509_crl *crl;
838 if ((new->crl = mbedtls_calloc(1, sizeof(mbedtls_x509_crl))) == NULL) { in sni_parse()

12