Home
last modified time | relevance | path

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

/third_party/openssl/crypto/x509/
Dx509_vfy.c1321 X509_STORE_CTX crl_ctx = {0}; in check_crl_path() local
1327 if (!X509_STORE_CTX_init(&crl_ctx, ctx->store, x, ctx->untrusted)) in check_crl_path()
1330 crl_ctx.crls = ctx->crls; in check_crl_path()
1332 X509_STORE_CTX_set0_param(&crl_ctx, ctx->param); in check_crl_path()
1334 crl_ctx.parent = ctx; in check_crl_path()
1335 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path()
1338 ret = X509_verify_cert(&crl_ctx); in check_crl_path()
1343 ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain); in check_crl_path()
1345 X509_STORE_CTX_cleanup(&crl_ctx); in check_crl_path()