summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-08-20 12:07:28 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-08-20 12:07:28 +0200
commit8925416858d186ce3f3a7da0f34fc7ce62e3b5b1 (patch)
tree6ac12102fe787170fbb4c4218b7c8c115d994e0d /tool
parent8909d2eb222b911cd125467673607e86c40f1ed9 (diff)
tool: Use Cv25519 as the default cipher suite.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/sq_cli.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/sq_cli.rs b/tool/src/sq_cli.rs
index 70dd4155..933bffa7 100644
--- a/tool/src/sq_cli.rs
+++ b/tool/src/sq_cli.rs
@@ -350,7 +350,7 @@ pub fn build() -> App<'static, 'static> {
.long("cipher-suite")
.short("c")
.possible_values(&["rsa3k", "cv25519"])
- .default_value("rsa3k")
+ .default_value("cv25519")
.help("Cryptographic algorithms used for the key."))
.arg(Arg::with_name("with-password")
.long("with-password")