From 732b4fd9739bc7b709de4bba2b008b46a7c248fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Fri, 14 Mar 2025 10:50:19 +0100 Subject: [PATCH] Fix supported cryptographic algorithms list --- src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 2711111..b5ed498 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -143,7 +143,9 @@ where let application_property_template = piv_types::ApplicationPropertyTemplate::default() .with_application_label(self.options.label) .with_application_url(self.options.url) - .with_supported_cryptographic_algorithms(&[Tdes, Aes256, P256, Rsa2048]); + .with_supported_cryptographic_algorithms(&[ + Tdes, Aes256, P256, Rsa2048, Rsa3072, Rsa4096, P384, + ]); application_property_template .encode_to_heapless_vec(*reply)