From 8e3154829a8d7f654249632fb1e06b26d1ee8c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Fri, 3 Feb 2023 11:34:44 +0100 Subject: [PATCH] Add RSA key kinds --- src/key.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/key.rs b/src/key.rs index 64910971a7f..5acaa4606b2 100644 --- a/src/key.rs +++ b/src/key.rs @@ -63,6 +63,9 @@ pub enum Kind { Symmetric(usize), /// 32B symmetric key + nonce, the parameter is the length of the nonce in bytes Symmetric32Nonce(usize), + Rsa2048, + Rsa3072, + Rsa4096, Ed255, P256, X255,