Home | History | Annotate | Download | only in apps

Lines Matching defs:signer

101 	X509 *cert = NULL, *recip = NULL, *signer = NULL;
254 else if (!strcmp (*args, "-signer"))
258 /* If previous -signer argument add signer to list */
296 /* If previous -inkey arument add signer to list */
301 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
383 /* Check to see if any final signer needs to be appended */
386 BIO_puts(bio_err, "Illegal -inkey without -signer\n");
402 BIO_printf(bio_err, "No signer certificate specified\n");
459 BIO_printf (bio_err, "-nointern don't search certificates in message for signer\n");
467 BIO_printf (bio_err, "-signer file signer certificate file\n");
471 BIO_printf (bio_err, "-inkey file input private key (if not signer or recipient)\n");
482 BIO_printf (bio_err, "-crl_check check revocation status of signer's certificate using CRLs\n");
483 BIO_printf (bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
714 signer = load_cert(bio_err, signerfile,FORMAT_PEM, NULL,
715 e, "signer certificate");
716 if (!signer)
722 if (!PKCS7_sign_add_signer(p7, signer, key,
725 X509_free(signer);
726 signer = NULL;
816 X509_free(signer);