Fix supported cryptographic algorithms list

This commit is contained in:
Sosthène Guédon
2025-03-14 11:32:34 +01:00
committed by sosthene-nitrokey
parent d9d9cf2696
commit 732b4fd973
+3 -1
View File
@@ -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)