From c23f2bd57379a5510dc82814bb0959aa34029f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 26 Mar 2023 20:10:21 +0200 Subject: [PATCH] Use rsa2048-sha256 as the default algorithm --- src/algorithm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithm.rs b/src/algorithm.rs index d84fc1e..61924ba 100644 --- a/src/algorithm.rs +++ b/src/algorithm.rs @@ -10,7 +10,7 @@ pub enum Algorithm { impl Default for Algorithm { fn default() -> Self { - Self::Ed25519Sha256 + Self::Rsa2048Sha256 } }