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

Diff for /src/usr.bin/openssl/dgst.c between version 1.5 and 1.6

version 1.5, 2015/09/10 16:01:06 version 1.6, 2015/09/11 14:30:23
Line 101 
Line 101 
 int  int
 dgst_main(int argc, char **argv)  dgst_main(int argc, char **argv)
 {  {
         ENGINE *e = NULL;  
         unsigned char *buf = NULL;          unsigned char *buf = NULL;
         int i, err = 1;          int i, err = 1;
         const EVP_MD *md = NULL, *m;          const EVP_MD *md = NULL, *m;
Line 120 
Line 119 
         unsigned char *sigbuf = NULL;          unsigned char *sigbuf = NULL;
         int siglen = 0;          int siglen = 0;
         char *passargin = NULL, *passin = NULL;          char *passargin = NULL, *passin = NULL;
 #ifndef OPENSSL_NO_ENGINE  
         char *engine = NULL;  
 #endif  
         char *hmac_key = NULL;          char *hmac_key = NULL;
         char *mac_name = NULL;          char *mac_name = NULL;
         STACK_OF(OPENSSL_STRING) * sigopts = NULL, *macopts = NULL;          STACK_OF(OPENSSL_STRING) * sigopts = NULL, *macopts = NULL;
Line 178 
Line 174 
                                 break;                                  break;
                         keyform = str2fmt(*(++argv));                          keyform = str2fmt(*(++argv));
                 }                  }
 #ifndef OPENSSL_NO_ENGINE  
                 else if (strcmp(*argv, "-engine") == 0) {  
                         if (--argc < 1)  
                                 break;  
                         engine = *(++argv);  
                         e = setup_engine(bio_err, engine, 0);  
                 }  
 #endif  
                 else if (strcmp(*argv, "-hex") == 0)                  else if (strcmp(*argv, "-hex") == 0)
                         out_bin = 0;                          out_bin = 0;
                 else if (strcmp(*argv, "-binary") == 0)                  else if (strcmp(*argv, "-binary") == 0)
Line 238 
Line 226 
                 BIO_printf(bio_err, "-sign   file    sign digest using private key in file\n");                  BIO_printf(bio_err, "-sign   file    sign digest using private key in file\n");
                 BIO_printf(bio_err, "-verify file    verify a signature using public key in file\n");                  BIO_printf(bio_err, "-verify file    verify a signature using public key in file\n");
                 BIO_printf(bio_err, "-prverify file  verify a signature using private key in file\n");                  BIO_printf(bio_err, "-prverify file  verify a signature using private key in file\n");
                 BIO_printf(bio_err, "-keyform arg    key file format (PEM or ENGINE)\n");                  BIO_printf(bio_err, "-keyform arg    key file format (PEM)\n");
                 BIO_printf(bio_err, "-out filename   output to filename rather than stdout\n");                  BIO_printf(bio_err, "-out filename   output to filename rather than stdout\n");
                 BIO_printf(bio_err, "-signature file signature to verify\n");                  BIO_printf(bio_err, "-signature file signature to verify\n");
                 BIO_printf(bio_err, "-sigopt nm:v    signature parameter\n");                  BIO_printf(bio_err, "-sigopt nm:v    signature parameter\n");
                 BIO_printf(bio_err, "-hmac key       create hashed MAC with key\n");                  BIO_printf(bio_err, "-hmac key       create hashed MAC with key\n");
                 BIO_printf(bio_err, "-mac algorithm  create MAC (not neccessarily HMAC)\n");                  BIO_printf(bio_err, "-mac algorithm  create MAC (not neccessarily HMAC)\n");
                 BIO_printf(bio_err, "-macopt nm:v    MAC algorithm parameters or key\n");                  BIO_printf(bio_err, "-macopt nm:v    MAC algorithm parameters or key\n");
 #ifndef OPENSSL_NO_ENGINE  
                 BIO_printf(bio_err, "-engine e       use engine e, possibly a hardware device.\n");  
 #endif  
   
                 EVP_MD_do_all_sorted(list_md_fn, bio_err);                  EVP_MD_do_all_sorted(list_md_fn, bio_err);
                 goto end;                  goto end;
Line 298 
Line 283 
         if (keyfile) {          if (keyfile) {
                 if (want_pub)                  if (want_pub)
                         sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,                          sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,
                             e, "key file");                              "key file");
                 else                  else
                         sigkey = load_key(bio_err, keyfile, keyform, 0, passin,                          sigkey = load_key(bio_err, keyfile, keyform, 0, passin,
                             e, "key file");                              "key file");
                 if (!sigkey) {                  if (!sigkey) {
                         /*                          /*
                          * load_[pub]key() has already printed an appropriate                           * load_[pub]key() has already printed an appropriate
Line 313 
Line 298 
         if (mac_name) {          if (mac_name) {
                 EVP_PKEY_CTX *mac_ctx = NULL;                  EVP_PKEY_CTX *mac_ctx = NULL;
                 int r = 0;                  int r = 0;
                 if (!init_gen_str(bio_err, &mac_ctx, mac_name, e, 0))                  if (!init_gen_str(bio_err, &mac_ctx, mac_name, 0))
                         goto mac_end;                          goto mac_end;
                 if (macopts) {                  if (macopts) {
                         char *macopt;                          char *macopt;
Line 341 
Line 326 
                         goto end;                          goto end;
         }          }
         if (hmac_key) {          if (hmac_key) {
                 sigkey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, e,                  sigkey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, NULL,
                     (unsigned char *) hmac_key, -1);                      (unsigned char *) hmac_key, -1);
                 if (!sigkey)                  if (!sigkey)
                         goto end;                          goto end;

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