[BACK]Return to smime.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/smime.c between version 1.3 and 1.4

version 1.3, 2015/08/22 16:36:05 version 1.4, 2015/09/11 14:30:23
Line 85 
Line 85 
 int  int
 smime_main(int argc, char **argv)  smime_main(int argc, char **argv)
 {  {
         ENGINE *e = NULL;  
         int operation = 0;          int operation = 0;
         int ret = 0;          int ret = 0;
         char **args;          char **args;
Line 110 
Line 109 
         const EVP_MD *sign_md = NULL;          const EVP_MD *sign_md = NULL;
         int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;          int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;
         int keyform = FORMAT_PEM;          int keyform = FORMAT_PEM;
 #ifndef OPENSSL_NO_ENGINE  
         char *engine = NULL;  
 #endif  
   
         X509_VERIFY_PARAM *vpm = NULL;          X509_VERIFY_PARAM *vpm = NULL;
   
Line 192 
Line 188 
                         flags |= PKCS7_NOOLDMIMETYPE;                          flags |= PKCS7_NOOLDMIMETYPE;
                 else if (!strcmp(*args, "-crlfeol"))                  else if (!strcmp(*args, "-crlfeol"))
                         flags |= PKCS7_CRLFEOL;                          flags |= PKCS7_CRLFEOL;
 #ifndef OPENSSL_NO_ENGINE  
                 else if (!strcmp(*args, "-engine")) {  
                         if (!args[1])  
                                 goto argerr;  
                         engine = *++args;  
                 }  
 #endif  
                 else if (!strcmp(*args, "-passin")) {                  else if (!strcmp(*args, "-passin")) {
                         if (!args[1])                          if (!args[1])
                                 goto argerr;                                  goto argerr;
Line 384 
Line 373 
                 BIO_printf(bio_err, "-in file       input file\n");                  BIO_printf(bio_err, "-in file       input file\n");
                 BIO_printf(bio_err, "-inform arg    input format SMIME (default), PEM or DER\n");                  BIO_printf(bio_err, "-inform arg    input format SMIME (default), PEM or DER\n");
                 BIO_printf(bio_err, "-inkey file    input private key (if not signer or recipient)\n");                  BIO_printf(bio_err, "-inkey file    input private key (if not signer or recipient)\n");
                 BIO_printf(bio_err, "-keyform arg   input private key format (PEM or ENGINE)\n");                  BIO_printf(bio_err, "-keyform arg   input private key format (PEM)\n");
                 BIO_printf(bio_err, "-out file      output file\n");                  BIO_printf(bio_err, "-out file      output file\n");
                 BIO_printf(bio_err, "-outform arg   output format SMIME (default), PEM or DER\n");                  BIO_printf(bio_err, "-outform arg   output format SMIME (default), PEM or DER\n");
                 BIO_printf(bio_err, "-content file  supply or override content for detached signature\n");                  BIO_printf(bio_err, "-content file  supply or override content for detached signature\n");
Line 396 
Line 385 
                 BIO_printf(bio_err, "-CAfile file   trusted certificates file\n");                  BIO_printf(bio_err, "-CAfile file   trusted certificates file\n");
                 BIO_printf(bio_err, "-crl_check     check revocation status of signer's certificate using CRLs\n");                  BIO_printf(bio_err, "-crl_check     check revocation status of signer's certificate using CRLs\n");
                 BIO_printf(bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");                  BIO_printf(bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
 #ifndef OPENSSL_NO_ENGINE  
                 BIO_printf(bio_err, "-engine e      use engine e, possibly a hardware device.\n");  
 #endif  
                 BIO_printf(bio_err, "-passin arg    input file pass phrase source\n");                  BIO_printf(bio_err, "-passin arg    input file pass phrase source\n");
                 BIO_printf(bio_err, "cert.pem       recipient certificate(s) for encryption\n");                  BIO_printf(bio_err, "cert.pem       recipient certificate(s) for encryption\n");
                 goto end;                  goto end;
         }          }
 #ifndef OPENSSL_NO_ENGINE  
         e = setup_engine(bio_err, engine, 0);  
 #endif  
   
         if (!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {          if (!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
                 BIO_printf(bio_err, "Error getting password\n");                  BIO_printf(bio_err, "Error getting password\n");
Line 444 
Line 427 
                 encerts = sk_X509_new_null();                  encerts = sk_X509_new_null();
                 while (*args) {                  while (*args) {
                         if (!(cert = load_cert(bio_err, *args, FORMAT_PEM,                          if (!(cert = load_cert(bio_err, *args, FORMAT_PEM,
                             NULL, e, "recipient certificate file"))) {                              NULL, "recipient certificate file"))) {
                                 goto end;                                  goto end;
                         }                          }
                         sk_X509_push(encerts, cert);                          sk_X509_push(encerts, cert);
Line 454 
Line 437 
         }          }
         if (certfile) {          if (certfile) {
                 if (!(other = load_certs(bio_err, certfile, FORMAT_PEM, NULL,                  if (!(other = load_certs(bio_err, certfile, FORMAT_PEM, NULL,
                             e, "certificate file"))) {                      "certificate file"))) {
                         ERR_print_errors(bio_err);                          ERR_print_errors(bio_err);
                         goto end;                          goto end;
                 }                  }
         }          }
         if (recipfile && (operation == SMIME_DECRYPT)) {          if (recipfile && (operation == SMIME_DECRYPT)) {
                 if (!(recip = load_cert(bio_err, recipfile, FORMAT_PEM, NULL,                  if (!(recip = load_cert(bio_err, recipfile, FORMAT_PEM, NULL,
                             e, "recipient certificate file"))) {                      "recipient certificate file"))) {
                         ERR_print_errors(bio_err);                          ERR_print_errors(bio_err);
                         goto end;                          goto end;
                 }                  }
Line 476 
Line 459 
                 keyfile = NULL;                  keyfile = NULL;
   
         if (keyfile) {          if (keyfile) {
                 key = load_key(bio_err, keyfile, keyform, 0, passin, e,                  key = load_key(bio_err, keyfile, keyform, 0, passin,
                     "signing key file");                      "signing key file");
                 if (!key)                  if (!key)
                         goto end;                          goto end;
Line 559 
Line 542 
                         signerfile = sk_OPENSSL_STRING_value(sksigners, i);                          signerfile = sk_OPENSSL_STRING_value(sksigners, i);
                         keyfile = sk_OPENSSL_STRING_value(skkeys, i);                          keyfile = sk_OPENSSL_STRING_value(skkeys, i);
                         signer = load_cert(bio_err, signerfile, FORMAT_PEM, NULL,                          signer = load_cert(bio_err, signerfile, FORMAT_PEM, NULL,
                             e, "signer certificate");                              "signer certificate");
                         if (!signer)                          if (!signer)
                                 goto end;                                  goto end;
                         key = load_key(bio_err, keyfile, keyform, 0, passin, e,                          key = load_key(bio_err, keyfile, keyform, 0, passin,
                             "signing key file");                              "signing key file");
                         if (!key)                          if (!key)
                                 goto end;                                  goto end;

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4