diff options
author | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2022-01-08 06:05:40 +0000 |
---|---|---|
committer | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2022-01-08 06:05:40 +0000 |
commit | 027d6602241289b8bb7fc17d163d51a2f88babaf (patch) | |
tree | f2452fe7f09d8be05d5ba35eaa926fadf5bb91f6 | |
parent | a839e9e5f9af854012acbe1038a3e06f023252c7 (diff) |
Indicate current default cipher
-rw-r--r-- | usr.bin/openssl/cms.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/openssl/cms.c b/usr.bin/openssl/cms.c index 79728e0b5e2..8d066e5a55d 100644 --- a/usr.bin/openssl/cms.c +++ b/usr.bin/openssl/cms.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cms.c,v 1.27 2022/01/06 12:54:51 inoguchi Exp $ */ +/* $OpenBSD: cms.c,v 1.28 2022/01/08 06:05:39 inoguchi Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -509,7 +509,7 @@ static const struct option cms_options[] = { }, { .name = "des3", - .desc = "Encrypt with triple DES", + .desc = "Encrypt with triple DES (default)", .type = OPTION_ARGV_FUNC, .opt.argvfunc = cms_opt_cipher, }, @@ -517,7 +517,7 @@ static const struct option cms_options[] = { #ifndef OPENSSL_NO_RC2 { .name = "rc2-40", - .desc = "Encrypt with RC2-40 (default)", + .desc = "Encrypt with RC2-40", .type = OPTION_ARGV_FUNC, .opt.argvfunc = cms_opt_cipher, }, |