I'm trying to create signed certificate request from C code in UEFI (I use edk2).
I know how to do it using openssl in Linux C code. I know there is CryptoPkg in edk2. But I didn't find functions to create request and check certificate.
Is there any way to create X509_REQ
and check X509
certificate using CryptoPkg? And how can I do it?
In the case if I can't do it: How can I create create request and check certificate? What is the best way to create my own openssl wrapper?