/third_party/node/deps/openssl/openssl/apps/ |
H A D | dgst.c | 99 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *macopts = NULL; in dgst_main() 203 if (!sigopts) in dgst_main() 204 sigopts = sk_OPENSSL_STRING_new_null(); in dgst_main() 205 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in dgst_main() 366 if (sigopts != NULL) { in dgst_main() 367 for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) { in dgst_main() 368 char *sigopt = sk_OPENSSL_STRING_value(sigopts, i); in dgst_main() 470 sk_OPENSSL_STRING_free(sigopts); in dgst_main()
|
H A D | ca.c | 94 STACK_OF(OPENSSL_STRING) *sigopts, 106 STACK_OF(OPENSSL_STRING) *sigopts, 116 STACK_OF(OPENSSL_STRING) *sigopts, 124 const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, 271 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *vfyopts = NULL; in ca_main() 407 if (sigopts == NULL) in ca_main() 408 sigopts = sk_OPENSSL_STRING_new_null(); in ca_main() 409 if (sigopts == NULL || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in ca_main() 967 j = certify_spkac(&x, spkac_file, pkey, x509, dgst, sigopts, in ca_main() 1377 certify(X509 **xret, const char *infile, int informat, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(OPENSSL_STRING) *vfyopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, int selfsign, unsigned long dateopt) certify() argument 1435 certify_cert(X509 **xret, const char *infile, int certformat, const char *passin, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(OPENSSL_STRING) *vfyopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, unsigned long dateopt) certify_cert() argument 1492 do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, int verbose, X509_REQ *req, const char *ext_sect, CONF *lconf, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, int selfsign, unsigned long dateopt) do_body() argument 1993 certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, unsigned long dateopt) certify_spkac() argument [all...] |
H A D | x509.c | 269 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *vfyopts = NULL; in x509_main() 363 if (!sigopts) in x509_main() 364 sigopts = sk_OPENSSL_STRING_new_null(); in x509_main() 365 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in x509_main() 871 if (!do_X509_REQ_sign(rq, privkey, digest, sigopts)) in x509_main() 888 if (!do_X509_sign(x, privkey, digest, sigopts, &ext_ctx)) in x509_main() 900 if (!do_X509_sign(x, CAkey, digest, sigopts, &ext_ctx)) in x509_main() 1077 sk_OPENSSL_STRING_free(sigopts); in x509_main()
|
H A D | req.c | 241 STACK_OF(OPENSSL_STRING) *pkeyopts = NULL, *sigopts = NULL, *vfyopts = NULL; in req_main() 358 if (!sigopts) in req_main() 359 sigopts = sk_OPENSSL_STRING_new_null(); in req_main() 360 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in req_main() 879 i = do_X509_sign(new_x509, issuer_key, digest, sigopts, &ext_ctx); in req_main() 903 i = do_X509_REQ_sign(req, pkey, digest, sigopts); in req_main() 1046 sk_OPENSSL_STRING_free(sigopts); in req_main()
|
H A D | ocsp.c | 72 STACK_OF(OPENSSL_STRING) *sigopts, 1031 STACK_OF(OPENSSL_STRING) *sigopts, in make_ocsp_response() 1146 for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) { in make_ocsp_response() 1147 char *sigopt = sk_OPENSSL_STRING_value(sigopts, i); in make_ocsp_response() 1028 make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, STACK_OF(X509) *ca, X509 *rcert, EVP_PKEY *rkey, const EVP_MD *rmd, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(X509) *rother, unsigned long flags, int nmin, int ndays, int badsig, const EVP_MD *resp_md) make_ocsp_response() argument
|
/third_party/openssl/apps/ |
H A D | dgst.c | 99 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *macopts = NULL; in dgst_main() 203 if (!sigopts) in dgst_main() 204 sigopts = sk_OPENSSL_STRING_new_null(); in dgst_main() 205 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in dgst_main() 366 if (sigopts != NULL) { in dgst_main() 367 for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) { in dgst_main() 368 char *sigopt = sk_OPENSSL_STRING_value(sigopts, i); in dgst_main() 470 sk_OPENSSL_STRING_free(sigopts); in dgst_main()
|
H A D | ca.c | 94 STACK_OF(OPENSSL_STRING) *sigopts, 106 STACK_OF(OPENSSL_STRING) *sigopts, 116 STACK_OF(OPENSSL_STRING) *sigopts, 124 const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, 271 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *vfyopts = NULL; in ca_main() 407 if (sigopts == NULL) in ca_main() 408 sigopts = sk_OPENSSL_STRING_new_null(); in ca_main() 409 if (sigopts == NULL || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in ca_main() 953 j = certify_spkac(&x, spkac_file, pkey, x509, dgst, sigopts, in ca_main() 1357 certify(X509 **xret, const char *infile, int informat, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(OPENSSL_STRING) *vfyopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, int selfsign, unsigned long dateopt) certify() argument 1415 certify_cert(X509 **xret, const char *infile, int certformat, const char *passin, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(OPENSSL_STRING) *vfyopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, unsigned long dateopt) certify_cert() argument 1472 do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, int verbose, X509_REQ *req, const char *ext_sect, CONF *lconf, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, int selfsign, unsigned long dateopt) do_body() argument 1973 certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, unsigned long dateopt) certify_spkac() argument [all...] |
H A D | x509.c | 269 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *vfyopts = NULL; in x509_main() 363 if (!sigopts) in x509_main() 364 sigopts = sk_OPENSSL_STRING_new_null(); in x509_main() 365 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in x509_main() 871 if (!do_X509_REQ_sign(rq, privkey, digest, sigopts)) in x509_main() 888 if (!do_X509_sign(x, privkey, digest, sigopts, &ext_ctx)) in x509_main() 900 if (!do_X509_sign(x, CAkey, digest, sigopts, &ext_ctx)) in x509_main() 1077 sk_OPENSSL_STRING_free(sigopts); in x509_main()
|
H A D | req.c | 241 STACK_OF(OPENSSL_STRING) *pkeyopts = NULL, *sigopts = NULL, *vfyopts = NULL; in req_main() 358 if (!sigopts) in req_main() 359 sigopts = sk_OPENSSL_STRING_new_null(); in req_main() 360 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg())) in req_main() 877 i = do_X509_sign(new_x509, issuer_key, digest, sigopts, &ext_ctx); in req_main() 901 i = do_X509_REQ_sign(req, pkey, digest, sigopts); in req_main() 1044 sk_OPENSSL_STRING_free(sigopts); in req_main()
|
H A D | ocsp.c | 72 STACK_OF(OPENSSL_STRING) *sigopts, 1031 STACK_OF(OPENSSL_STRING) *sigopts, in make_ocsp_response() 1146 for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) { in make_ocsp_response() 1147 char *sigopt = sk_OPENSSL_STRING_value(sigopts, i); in make_ocsp_response() 1028 make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, STACK_OF(X509) *ca, X509 *rcert, EVP_PKEY *rkey, const EVP_MD *rmd, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(X509) *rother, unsigned long flags, int nmin, int ndays, int badsig, const EVP_MD *resp_md) make_ocsp_response() argument
|
/third_party/node/deps/openssl/openssl/apps/include/ |
H A D | apps.h | 256 STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx); 259 STACK_OF(OPENSSL_STRING) *sigopts); 263 STACK_OF(OPENSSL_STRING) *sigopts);
|
/third_party/openssl/apps/include/ |
H A D | apps.h | 256 STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx); 259 STACK_OF(OPENSSL_STRING) *sigopts); 263 STACK_OF(OPENSSL_STRING) *sigopts);
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps.c | 2221 const char *md, STACK_OF(OPENSSL_STRING) *sigopts) in do_sign_init() 2240 && do_pkey_ctx_init(pkctx, sigopts); in do_sign_init() 2273 STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx) in do_X509_sign() 2301 if (mctx != NULL && do_sign_init(mctx, pkey, md, sigopts) > 0) in do_X509_sign() 2310 STACK_OF(OPENSSL_STRING) *sigopts) in do_X509_REQ_sign() 2315 if (do_sign_init(mctx, pkey, md, sigopts) > 0) in do_X509_REQ_sign() 2323 STACK_OF(OPENSSL_STRING) *sigopts) in do_X509_CRL_sign() 2328 if (do_sign_init(mctx, pkey, md, sigopts) > 0) in do_X509_CRL_sign() 2220 do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts) do_sign_init() argument 2272 do_X509_sign(X509 *cert, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx) do_X509_sign() argument 2309 do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts) do_X509_REQ_sign() argument 2322 do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts) do_X509_CRL_sign() argument
|
/third_party/openssl/apps/lib/ |
H A D | apps.c | 2214 const char *md, STACK_OF(OPENSSL_STRING) *sigopts) in do_sign_init() 2233 && do_pkey_ctx_init(pkctx, sigopts); in do_sign_init() 2266 STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx) in do_X509_sign() 2294 if (mctx != NULL && do_sign_init(mctx, pkey, md, sigopts) > 0) in do_X509_sign() 2303 STACK_OF(OPENSSL_STRING) *sigopts) in do_X509_REQ_sign() 2308 if (do_sign_init(mctx, pkey, md, sigopts) > 0) in do_X509_REQ_sign() 2316 STACK_OF(OPENSSL_STRING) *sigopts) in do_X509_CRL_sign() 2321 if (do_sign_init(mctx, pkey, md, sigopts) > 0) in do_X509_CRL_sign() 2213 do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts) do_sign_init() argument 2265 do_X509_sign(X509 *cert, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx) do_X509_sign() argument 2302 do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts) do_X509_REQ_sign() argument 2315 do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const char *md, STACK_OF(OPENSSL_STRING) *sigopts) do_X509_CRL_sign() argument
|