Lines Matching refs:signer
62 "Input private key (if not signer or recipient)"},
85 "Don't search certificates in message for signer"},
89 {"signer", OPT_SIGNER, 's', "Signer certificate file"},
140 X509 *cert = NULL, *recip = NULL, *signer = NULL;
277 /* If previous -signer argument add signer to list */
303 /* If previous -inkey argument add signer to list */
307 "%s: Must have -signer before -inkey\n", prog);
384 /* Check to see if any final signer needs to be appended */
386 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
401 BIO_printf(bio_err, "No signer certificate specified\n");
577 signer = load_cert(signerfile, FORMAT_UNDEF, "signer certificate");
578 if (signer == NULL)
584 if (!PKCS7_sign_add_signer(p7, signer, key, sign_md, flags))
586 X509_free(signer);
587 signer = NULL;
664 X509_free(signer);