diff options
author | inoguchi <> | 2022-01-08 06:05:39 +0000 |
---|---|---|
committer | inoguchi <> | 2022-01-08 06:05:39 +0000 |
commit | 913c590049bb4c8044d460f21e536a63ca3f56c0 (patch) | |
tree | faef1529e6c321c3074e3dc784d4b190c320948e /src/usr.bin/openssl/cms.c | |
parent | 1a32dddf946a2c1991541d3afdc15598c788cd6b (diff) | |
download | openbsd-913c590049bb4c8044d460f21e536a63ca3f56c0.tar.gz openbsd-913c590049bb4c8044d460f21e536a63ca3f56c0.tar.bz2 openbsd-913c590049bb4c8044d460f21e536a63ca3f56c0.zip |
Indicate current default cipher
Diffstat (limited to 'src/usr.bin/openssl/cms.c')
-rw-r--r-- | src/usr.bin/openssl/cms.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr.bin/openssl/cms.c b/src/usr.bin/openssl/cms.c index 79728e0b5e..8d066e5a55 100644 --- a/src/usr.bin/openssl/cms.c +++ b/src/usr.bin/openssl/cms.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms.c,v 1.27 2022/01/06 12:54:51 inoguchi Exp $ */ | 1 | /* $OpenBSD: cms.c,v 1.28 2022/01/08 06:05:39 inoguchi Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project. | 3 | * project. |
4 | */ | 4 | */ |
@@ -509,7 +509,7 @@ static const struct option cms_options[] = { | |||
509 | }, | 509 | }, |
510 | { | 510 | { |
511 | .name = "des3", | 511 | .name = "des3", |
512 | .desc = "Encrypt with triple DES", | 512 | .desc = "Encrypt with triple DES (default)", |
513 | .type = OPTION_ARGV_FUNC, | 513 | .type = OPTION_ARGV_FUNC, |
514 | .opt.argvfunc = cms_opt_cipher, | 514 | .opt.argvfunc = cms_opt_cipher, |
515 | }, | 515 | }, |
@@ -517,7 +517,7 @@ static const struct option cms_options[] = { | |||
517 | #ifndef OPENSSL_NO_RC2 | 517 | #ifndef OPENSSL_NO_RC2 |
518 | { | 518 | { |
519 | .name = "rc2-40", | 519 | .name = "rc2-40", |
520 | .desc = "Encrypt with RC2-40 (default)", | 520 | .desc = "Encrypt with RC2-40", |
521 | .type = OPTION_ARGV_FUNC, | 521 | .type = OPTION_ARGV_FUNC, |
522 | .opt.argvfunc = cms_opt_cipher, | 522 | .opt.argvfunc = cms_opt_cipher, |
523 | }, | 523 | }, |