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

Diff for /src/usr.bin/openssl/dsa.c between version 1.13 and 1.14

version 1.13, 2019/02/09 15:49:21 version 1.14, 2019/07/10 10:28:28
Line 122 
Line 122 
                 .opt.value = &dsa_config.informat,                  .opt.value = &dsa_config.informat,
         },          },
         {          {
                   .name = "modulus",
                   .desc = "Print the DSA public value",
                   .type = OPTION_FLAG,
                   .opt.flag = &dsa_config.modulus,
           },
           {
                 .name = "noout",                  .name = "noout",
                 .desc = "No output",                  .desc = "No output",
                 .type = OPTION_FLAG,                  .type = OPTION_FLAG,
Line 209 
Line 215 
         int n = 0;          int n = 0;
   
         fprintf(stderr,          fprintf(stderr,
             "usage: dsa [-in file] [-inform format] [-noout]\n"              "usage: dsa [-in file] [-inform format] [-modulus] [-noout]\n"
             "    [-out file] [-outform format] [-passin src] [-passout src]\n"              "    [-out file] [-outform format] [-passin src] [-passout src]\n"
             "    [-pubin] [-pubout] [-pvk-none | -pvk-strong | -pvk-weak]\n"              "    [-pubin] [-pubout] [-pvk-none | -pvk-strong | -pvk-weak]\n"
             "    [-text] [-ciphername]\n\n");              "    [-text] [-ciphername]\n\n");

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14