diff options
Diffstat (limited to 'lib/libssl/src/apps/gendsa.c')
-rw-r--r-- | lib/libssl/src/apps/gendsa.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/libssl/src/apps/gendsa.c b/lib/libssl/src/apps/gendsa.c index 8a0d3ecbed9..07eb7563720 100644 --- a/lib/libssl/src/apps/gendsa.c +++ b/lib/libssl/src/apps/gendsa.c @@ -134,10 +134,6 @@ gendsa_main(int argc, char **argv) else if (strcmp(*argv, "-idea") == 0) enc = EVP_idea_cbc(); #endif -#ifndef OPENSSL_NO_SEED - else if (strcmp(*argv, "-seed") == 0) - enc = EVP_seed_cbc(); -#endif #ifndef OPENSSL_NO_AES else if (strcmp(*argv, "-aes128") == 0) enc = EVP_aes_128_cbc(); @@ -173,10 +169,6 @@ bad: #ifndef OPENSSL_NO_IDEA BIO_printf(bio_err, " -idea - encrypt the generated key with IDEA in cbc mode\n"); #endif -#ifndef OPENSSL_NO_SEED - BIO_printf(bio_err, " -seed\n"); - BIO_printf(bio_err, " encrypt PEM output with cbc seed\n"); -#endif #ifndef OPENSSL_NO_AES BIO_printf(bio_err, " -aes128, -aes192, -aes256\n"); BIO_printf(bio_err, " encrypt PEM output with cbc aes\n"); |