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

Diff for /src/usr.bin/openssl/enc.c between version 1.10 and 1.11

version 1.10, 2015/10/17 15:00:11 version 1.11, 2016/04/07 20:02:19
Line 178 
Line 178 
         {          {
                 .name = "iv",                  .name = "iv",
                 .argname = "IV",                  .argname = "IV",
                 .desc = "IV to use, specified as a hexidecimal string",                  .desc = "IV to use, specified as a hexadecimal string",
                 .type = OPTION_ARG,                  .type = OPTION_ARG,
                 .opt.arg = &enc_config.hiv,                  .opt.arg = &enc_config.hiv,
         },          },
         {          {
                 .name = "K",                  .name = "K",
                 .argname = "key",                  .argname = "key",
                 .desc = "Key to use, specified as a hexidecimal string",                  .desc = "Key to use, specified as a hexadecimal string",
                 .type = OPTION_ARG,                  .type = OPTION_ARG,
                 .opt.arg = &enc_config.hkey,                  .opt.arg = &enc_config.hkey,
         },          },
Line 256 
Line 256 
         {          {
                 .name = "S",                  .name = "S",
                 .argname = "salt",                  .argname = "salt",
                 .desc = "Salt to use, specified as a hexidecimal string",                  .desc = "Salt to use, specified as a hexadecimal string",
                 .type = OPTION_ARG,                  .type = OPTION_ARG,
                 .opt.arg = &enc_config.hsalt,                  .opt.arg = &enc_config.hsalt,
         },          },

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11