RSA support for X509 utilities
Hi,
I'm using some STM32 drivers code to parse X509 certificates. These drivers are based on ECC cryptography. I need to change to RSA. I need utilities such as
parseCert()
isValidCert()
isParent()
which exist for ECC, but I cannot find any equivalents for RSA cryptography.
Specifically, I need to check a chain of trust of RSA certificates, and I also need to call RSA_PKCS1v15_Verify() for an RSA signature, so I need to pass in the public key in a structure RSApubKey_stt, and this has to be extracted from the leaf certificate.
The target MCU is STM32H753.
The ECC-based X509 utilties I'm working with are dated 24-february-2017.
Do such utilities exist for RSA? Or do I have to write them myself?
Thanks
