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

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

version 1.13, 2019/07/16 12:36:50 version 1.14, 2019/07/24 14:23:25
Line 133 
Line 133 
 #ifndef OPENSSL_NO_AES  #ifndef OPENSSL_NO_AES
         {          {
                 .name = "aes128",                  .name = "aes128",
                 .desc = "Encrypt PEM output with cbc aes",                  .desc = "Encrypt PEM output with CBC AES",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
         {          {
                 .name = "aes192",                  .name = "aes192",
                 .desc = "Encrypt PEM output with cbc aes",                  .desc = "Encrypt PEM output with CBC AES",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
         {          {
                 .name = "aes256",                  .name = "aes256",
                 .desc = "Encrypt PEM output with cbc aes",                  .desc = "Encrypt PEM output with CBC AES",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
Line 153 
Line 153 
 #ifndef OPENSSL_NO_CAMELLIA  #ifndef OPENSSL_NO_CAMELLIA
         {          {
                 .name = "camellia128",                  .name = "camellia128",
                 .desc = "Encrypt PEM output with cbc camellia",                  .desc = "Encrypt PEM output with CBC Camellia",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
         {          {
                 .name = "camellia192",                  .name = "camellia192",
                 .desc = "Encrypt PEM output with cbc camellia",                  .desc = "Encrypt PEM output with CBC Camellia",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
         {          {
                 .name = "camellia256",                  .name = "camellia256",
                 .desc = "Encrypt PEM output with cbc camellia",                  .desc = "Encrypt PEM output with CBC Camellia",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
Line 173 
Line 173 
 #ifndef OPENSSL_NO_DES  #ifndef OPENSSL_NO_DES
         {          {
                 .name = "des",                  .name = "des",
                 .desc = "Encrypt the generated key with DES in cbc mode",                  .desc = "Encrypt the generated key with DES in CBC mode",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
         {          {
                 .name = "des3",                  .name = "des3",
                 .desc = "Encrypt the generated key with DES in ede cbc mode (168 bit key)",                  .desc = "Encrypt the generated key with DES in EDE CBC mode (168 bit key)",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },
Line 187 
Line 187 
 #ifndef OPENSSL_NO_IDEA  #ifndef OPENSSL_NO_IDEA
         {          {
                 .name = "idea",                  .name = "idea",
                 .desc = "Encrypt the generated key with IDEA in cbc mode",                  .desc = "Encrypt the generated key with IDEA in CBC mode",
                 .type = OPTION_ARGV_FUNC,                  .type = OPTION_ARGV_FUNC,
                 .opt.argvfunc = set_enc,                  .opt.argvfunc = set_enc,
         },          },

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