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

Diff for /src/usr.bin/openssl/rsautl.c between version 1.6 and 1.7

version 1.6, 2015/08/22 16:36:05 version 1.7, 2015/09/11 14:30:23
Line 81 
Line 81 
 int  int
 rsautl_main(int argc, char **argv)  rsautl_main(int argc, char **argv)
 {  {
         ENGINE *e = NULL;  
         BIO *in = NULL, *out = NULL;          BIO *in = NULL, *out = NULL;
         char *infile = NULL, *outfile = NULL;          char *infile = NULL, *outfile = NULL;
 #ifndef OPENSSL_NO_ENGINE  
         char *engine = NULL;  
 #endif  
         char *keyfile = NULL;          char *keyfile = NULL;
         char rsa_mode = RSA_VERIFY, key_type = KEY_PRIVKEY;          char rsa_mode = RSA_VERIFY, key_type = KEY_PRIVKEY;
         int keyform = FORMAT_PEM;          int keyform = FORMAT_PEM;
Line 133 
Line 129 
                                 badarg = 1;                                  badarg = 1;
                         else                          else
                                 keyform = str2fmt(*(++argv));                                  keyform = str2fmt(*(++argv));
 #ifndef OPENSSL_NO_ENGINE  
                 } else if (!strcmp(*argv, "-engine")) {  
                         if (--argc < 1)  
                                 badarg = 1;  
                         else  
                                 engine = *(++argv);  
 #endif  
                 } else if (!strcmp(*argv, "-pubin")) {                  } else if (!strcmp(*argv, "-pubin")) {
                         key_type = KEY_PUBKEY;                          key_type = KEY_PUBKEY;
                 } else if (!strcmp(*argv, "-certin")) {                  } else if (!strcmp(*argv, "-certin")) {
Line 184 
Line 173 
                 BIO_printf(bio_err, "A private key is needed for this operation\n");                  BIO_printf(bio_err, "A private key is needed for this operation\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");
                 goto end;                  goto end;
Line 195 
Line 181 
         switch (key_type) {          switch (key_type) {
         case KEY_PRIVKEY:          case KEY_PRIVKEY:
                 pkey = load_key(bio_err, keyfile, keyform, 0,                  pkey = load_key(bio_err, keyfile, keyform, 0,
                     passin, e, "Private Key");                      passin, "Private Key");
                 break;                  break;
   
         case KEY_PUBKEY:          case KEY_PUBKEY:
                 pkey = load_pubkey(bio_err, keyfile, keyform, 0,                  pkey = load_pubkey(bio_err, keyfile, keyform, 0,
                     NULL, e, "Public Key");                      NULL, "Public Key");
                 break;                  break;
   
         case KEY_CERT:          case KEY_CERT:
                 x = load_cert(bio_err, keyfile, keyform,                  x = load_cert(bio_err, keyfile, keyform,
                     NULL, e, "Certificate");                      NULL, "Certificate");
                 if (x) {                  if (x) {
                         pkey = X509_get_pubkey(x);                          pkey = X509_get_pubkey(x);
                         X509_free(x);                          X509_free(x);
Line 336 
Line 322 
         BIO_printf(bio_err, "-encrypt        encrypt with public key\n");          BIO_printf(bio_err, "-encrypt        encrypt with public key\n");
         BIO_printf(bio_err, "-decrypt        decrypt with private key\n");          BIO_printf(bio_err, "-decrypt        decrypt with private key\n");
         BIO_printf(bio_err, "-hexdump        hex dump output\n");          BIO_printf(bio_err, "-hexdump        hex dump output\n");
 #ifndef OPENSSL_NO_ENGINE  
         BIO_printf(bio_err, "-engine e       use engine e, possibly a hardware device.\n");  
         BIO_printf(bio_err, "-passin arg    pass phrase source\n");  
 #endif  
   
 }  }
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7