From 875a84811e9a97f9d4e34e20f01046996c4f16a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 16 Apr 2023 00:14:21 +0200 Subject: [PATCH] On revocation, display only the key type --- src/key.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/key.rs b/src/key.rs index 0ce095e..1362312 100644 --- a/src/key.rs +++ b/src/key.rs @@ -44,6 +44,7 @@ async fn publish_expired_keys(db: &SqlitePool, file_path: &Path) -> Result().unwrap().key_type(); buff.write_all(algorithm.as_bytes()).await?; buff.write_all(b" ").await?; buff.write_all(private_key.as_bytes()).await?;