/third_party/node/deps/openssl/openssl/apps/ |
H A D | verify.c | 24 STACK_OF(X509_CRL) *crls, int show_chain, 83 STACK_OF(X509_CRL) *crls = NULL; in verify_main() 162 if (!load_crls(opt_arg(), &crls, NULL, "other CRLs")) in verify_main() 224 if (check(store, NULL, untrusted, trusted, crls, show_chain, in verify_main() 229 if (check(store, argv[i], untrusted, trusted, crls, show_chain, in verify_main() 239 sk_X509_CRL_pop_free(crls, X509_CRL_free); in verify_main() 247 STACK_OF(X509_CRL) *crls, int show_chain, in check() 289 if (crls != NULL) in check() 290 X509_STORE_CTX_set0_crls(csc, crls); in check() 245 check(X509_STORE *ctx, const char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, STACK_OF(X509_CRL) *crls, int show_chain, STACK_OF(OPENSSL_STRING) *opts) check() argument
|
H A D | pkcs7.c | 148 STACK_OF(X509_CRL) *crls = NULL; in pkcs7_main() 155 crls = p7->d.sign->crl; in pkcs7_main() 161 crls = p7->d.signed_and_enveloped->crl; in pkcs7_main() 183 if (crls != NULL) { in pkcs7_main() 186 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in pkcs7_main() 187 crl = sk_X509_CRL_value(crls, i); in pkcs7_main()
|
H A D | s_server.c | 986 STACK_OF(X509_CRL) *crls = NULL; in s_server_main() 1779 crls = sk_X509_CRL_new_null(); in s_server_main() 1780 if (crls == NULL || !sk_X509_CRL_push(crls, crl)) { in s_server_main() 1953 ssl_ctx_add_crls(ctx, crls, 0); in s_server_main() 1958 crls, crl_download)) { in s_server_main() 2016 ssl_ctx_add_crls(ctx2, crls, 0); in s_server_main() 2243 sk_X509_CRL_pop_free(crls, X509_CRL_free); in s_server_main()
|
/third_party/openssl/apps/ |
H A D | verify.c | 24 STACK_OF(X509_CRL) *crls, int show_chain, 83 STACK_OF(X509_CRL) *crls = NULL; in verify_main() 162 if (!load_crls(opt_arg(), &crls, NULL, "other CRLs")) in verify_main() 224 if (check(store, NULL, untrusted, trusted, crls, show_chain, in verify_main() 229 if (check(store, argv[i], untrusted, trusted, crls, show_chain, in verify_main() 239 sk_X509_CRL_pop_free(crls, X509_CRL_free); in verify_main() 247 STACK_OF(X509_CRL) *crls, int show_chain, in check() 289 if (crls != NULL) in check() 290 X509_STORE_CTX_set0_crls(csc, crls); in check() 245 check(X509_STORE *ctx, const char *file, STACK_OF(X509) *uchain, STACK_OF(X509) *tchain, STACK_OF(X509_CRL) *crls, int show_chain, STACK_OF(OPENSSL_STRING) *opts) check() argument
|
H A D | pkcs7.c | 148 STACK_OF(X509_CRL) *crls = NULL; in pkcs7_main() 155 crls = p7->d.sign->crl; in pkcs7_main() 161 crls = p7->d.signed_and_enveloped->crl; in pkcs7_main() 183 if (crls != NULL) { in pkcs7_main() 186 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in pkcs7_main() 187 crl = sk_X509_CRL_value(crls, i); in pkcs7_main()
|
H A D | s_server.c | 986 STACK_OF(X509_CRL) *crls = NULL; in s_server_main() 1774 crls = sk_X509_CRL_new_null(); in s_server_main() 1775 if (crls == NULL || !sk_X509_CRL_push(crls, crl)) { in s_server_main() 1948 ssl_ctx_add_crls(ctx, crls, 0); in s_server_main() 1953 crls, crl_download)) { in s_server_main() 2011 ssl_ctx_add_crls(ctx2, crls, 0); in s_server_main() 2238 sk_X509_CRL_pop_free(crls, X509_CRL_free); in s_server_main()
|
/third_party/node/deps/openssl/openssl/fuzz/ |
H A D | x509.c | 44 STACK_OF(X509_CRL) *crls = NULL; in FuzzerTestOneInput() 100 crls = sk_X509_CRL_new_null(); in FuzzerTestOneInput() 101 if (crls == NULL) in FuzzerTestOneInput() 104 sk_X509_CRL_push(crls, crl); in FuzzerTestOneInput() 105 X509_STORE_CTX_set0_crls(ctx, crls); in FuzzerTestOneInput() 143 sk_X509_CRL_free(crls); in FuzzerTestOneInput()
|
/third_party/node/deps/openssl/openssl/crypto/cms/ |
H A D | cms_lib.c | 565 return &cms->d.signedData->crls; in STACK_OF() 570 return &cms->d.envelopedData->originatorInfo->crls; in STACK_OF() 575 return &cms->d.authEnvelopedData->originatorInfo->crls; in STACK_OF() 653 STACK_OF(X509_CRL) *crls = NULL; in STACK_OF() 664 if (!crls) { in STACK_OF() 665 crls = sk_X509_CRL_new_null(); in STACK_OF() 666 if (!crls) in STACK_OF() 669 if (!sk_X509_CRL_push(crls, rch->d.crl)) { in STACK_OF() 670 sk_X509_CRL_pop_free(crls, X509_CRL_free); in STACK_OF() 676 return crls; in STACK_OF() [all...] |
H A D | cms_smime.c | 263 STACK_OF(X509_CRL) *crls, in cms_signerinfo_verify_cert() 283 if (crls != NULL) in cms_signerinfo_verify_cert() 284 X509_STORE_CTX_set0_crls(ctx, crls); in cms_signerinfo_verify_cert() 310 STACK_OF(X509_CRL) *crls = NULL; in CMS_verify() 365 crls = CMS_get1_crls(cms); in CMS_verify() 369 if (!cms_signerinfo_verify_cert(si, store, cms_certs, crls, in CMS_verify() 486 sk_X509_CRL_pop_free(crls, X509_CRL_free); in CMS_verify() 260 cms_signerinfo_verify_cert(CMS_SignerInfo *si, X509_STORE *store, STACK_OF(X509) *certs, STACK_OF(X509_CRL) *crls, STACK_OF(X509) **chain, const CMS_CTX *cms_ctx) cms_signerinfo_verify_cert() argument
|
H A D | cms_asn1.c | 83 ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1), 89 ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1)
|
H A D | cms_local.h | 79 STACK_OF(CMS_RevocationInfoChoice) *crls; member 125 STACK_OF(CMS_RevocationInfoChoice) *crls; member
|
/third_party/openssl/crypto/cms/ |
H A D | cms_lib.c | 552 return &cms->d.signedData->crls; in STACK_OF() 557 return &cms->d.envelopedData->originatorInfo->crls; in STACK_OF() 562 return &cms->d.authEnvelopedData->originatorInfo->crls; in STACK_OF() 640 STACK_OF(X509_CRL) *crls = NULL; in STACK_OF() 651 if (!crls) { in STACK_OF() 652 crls = sk_X509_CRL_new_null(); in STACK_OF() 653 if (!crls) in STACK_OF() 656 if (!sk_X509_CRL_push(crls, rch->d.crl)) { in STACK_OF() 657 sk_X509_CRL_pop_free(crls, X509_CRL_free); in STACK_OF() 663 return crls; in STACK_OF() [all...] |
H A D | cms_smime.c | 264 STACK_OF(X509_CRL) *crls, in cms_signerinfo_verify_cert() 284 if (crls != NULL) in cms_signerinfo_verify_cert() 285 X509_STORE_CTX_set0_crls(ctx, crls); in cms_signerinfo_verify_cert() 311 STACK_OF(X509_CRL) *crls = NULL; in CMS_verify() 366 crls = CMS_get1_crls(cms); in CMS_verify() 370 if (!cms_signerinfo_verify_cert(si, store, cms_certs, crls, in CMS_verify() 487 sk_X509_CRL_pop_free(crls, X509_CRL_free); in CMS_verify() 261 cms_signerinfo_verify_cert(CMS_SignerInfo *si, X509_STORE *store, STACK_OF(X509) *certs, STACK_OF(X509_CRL) *crls, STACK_OF(X509) **chain, const CMS_CTX *cms_ctx) cms_signerinfo_verify_cert() argument
|
H A D | cms_local.h | 79 STACK_OF(CMS_RevocationInfoChoice) *crls; member 125 STACK_OF(CMS_RevocationInfoChoice) *crls; member
|
H A D | cms_asn1.c | 84 ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1), 90 ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1)
|
/third_party/openssl/test/ |
H A D | crltest.c | 241 * Verify |leaf| certificate (chained up to |root|). |crls| if 246 static int verify(X509 *leaf, X509 *root, STACK_OF(X509_CRL) *crls, in verify() argument 267 X509_STORE_CTX_set0_crls(ctx, crls); in verify() 282 sk_X509_CRL_pop_free(crls, X509_CRL_free); in verify()
|
/third_party/node/deps/openssl/openssl/apps/include/ |
H A D | s_apps.h | 72 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, 77 const char *chCAstore, STACK_OF(X509_CRL) *crls,
|
/third_party/openssl/apps/include/ |
H A D | s_apps.h | 72 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, 77 const char *chCAstore, STACK_OF(X509_CRL) *crls,
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | s_cb.c | 1276 static int add_crls_store(X509_STORE *st, STACK_OF(X509_CRL) *crls) in add_crls_store() argument 1281 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in add_crls_store() 1282 crl = sk_X509_CRL_value(crls, i); in add_crls_store() 1289 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download) in ssl_ctx_add_crls() argument 1294 add_crls_store(st, crls); in ssl_ctx_add_crls() 1305 STACK_OF(X509_CRL) *crls, int crl_download) in ssl_load_stores() 1320 add_crls_store(vfy, crls); in ssl_load_stores() 1300 ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath, const char *vfyCAfile, const char *vfyCAstore, const char *chCApath, const char *chCAfile, const char *chCAstore, STACK_OF(X509_CRL) *crls, int crl_download) ssl_load_stores() argument
|
H A D | apps.c | 816 * Initialize or extend, if *crls != NULL, a certificate stack. 817 * The caller is responsible for freeing *crls if its value is left not NULL. 819 int load_crls(const char *uri, STACK_OF(X509_CRL) **crls, in load_crls() argument 822 int was_NULL = *crls == NULL; in load_crls() 825 NULL, NULL, NULL, crls); in load_crls() 828 sk_X509_CRL_pop_free(*crls, X509_CRL_free); in load_crls() 829 *crls = NULL; in load_crls() 2417 STACK_OF(X509_CRL) *crls = NULL; in STACK_OF() 2421 crls = sk_X509_CRL_new_null(); in STACK_OF() 2422 if (!crls) in STACK_OF() [all...] |
/third_party/openssl/apps/lib/ |
H A D | s_cb.c | 1276 static int add_crls_store(X509_STORE *st, STACK_OF(X509_CRL) *crls) in add_crls_store() argument 1281 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in add_crls_store() 1282 crl = sk_X509_CRL_value(crls, i); in add_crls_store() 1289 int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls, int crl_download) in ssl_ctx_add_crls() argument 1294 add_crls_store(st, crls); in ssl_ctx_add_crls() 1305 STACK_OF(X509_CRL) *crls, int crl_download) in ssl_load_stores() 1320 add_crls_store(vfy, crls); in ssl_load_stores() 1300 ssl_load_stores(SSL_CTX *ctx, const char *vfyCApath, const char *vfyCAfile, const char *vfyCAstore, const char *chCApath, const char *chCAfile, const char *chCAstore, STACK_OF(X509_CRL) *crls, int crl_download) ssl_load_stores() argument
|
H A D | apps.c | 816 * Initialize or extend, if *crls != NULL, a certificate stack. 817 * The caller is responsible for freeing *crls if its value is left not NULL. 819 int load_crls(const char *uri, STACK_OF(X509_CRL) **crls, in load_crls() argument 822 int was_NULL = *crls == NULL; in load_crls() 825 NULL, NULL, NULL, crls); in load_crls() 828 sk_X509_CRL_pop_free(*crls, X509_CRL_free); in load_crls() 829 *crls = NULL; in load_crls() 2410 STACK_OF(X509_CRL) *crls = NULL; in STACK_OF() 2414 crls = sk_X509_CRL_new_null(); in STACK_OF() 2415 if (!crls) in STACK_OF() [all...] |
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_vfy.c | 69 STACK_OF(X509_CRL) *crls); 1058 STACK_OF(X509_CRL) *crls) in get_crl_sk() 1066 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in get_crl_sk() 1067 crl = sk_X509_CRL_value(crls, i); in get_crl_sk() 1101 get_delta_sk(ctx, pdcrl, pscore, best_crl, crls); in get_crl_sk() 1172 X509_CRL *base, STACK_OF(X509_CRL) *crls) in get_delta_sk() 1181 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in get_delta_sk() 1182 delta = sk_X509_CRL_value(crls, i); in get_delta_sk() 1330 crl_ctx.crls = ctx->crls; in check_crl_path() 1056 get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl, X509 **pissuer, int *pscore, unsigned int *preasons, STACK_OF(X509_CRL) *crls) get_crl_sk() argument 1171 get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore, X509_CRL *base, STACK_OF(X509_CRL) *crls) get_delta_sk() argument [all...] |
/third_party/openssl/crypto/x509/ |
H A D | x509_vfy.c | 69 STACK_OF(X509_CRL) *crls); 1058 STACK_OF(X509_CRL) *crls) in get_crl_sk() 1066 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in get_crl_sk() 1067 crl = sk_X509_CRL_value(crls, i); in get_crl_sk() 1101 get_delta_sk(ctx, pdcrl, pscore, best_crl, crls); in get_crl_sk() 1172 X509_CRL *base, STACK_OF(X509_CRL) *crls) in get_delta_sk() 1181 for (i = 0; i < sk_X509_CRL_num(crls); i++) { in get_delta_sk() 1182 delta = sk_X509_CRL_value(crls, i); in get_delta_sk() 1330 crl_ctx.crls = ctx->crls; in check_crl_path() 1056 get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl, X509 **pissuer, int *pscore, unsigned int *preasons, STACK_OF(X509_CRL) *crls) get_crl_sk() argument 1171 get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore, X509_CRL *base, STACK_OF(X509_CRL) *crls) get_delta_sk() argument [all...] |
/third_party/openssl/ohos_lite/include/crypto/ |
H A D | x509.h | 203 STACK_OF(X509_CRL) *crls; member
|