C ++ certificate parsing library?

I have used Crypto ++ for my application. However, it lacks a digital certificate analyzer. I know openSSL has one, but I need to study the whole library again.

Is there a parsing library out there for C ++? All I want is to read the certificate and extract some fields including the public key.

+2


a source to share


1 answer


I don't know of any really common ASN.1 libraries , but the format used by the certificate files is actually dead easy to parse.



+1


a source