Using the OpenSSL API, I have extracted a custom extension from a X.509v3 certificate with:
X509_EXTENSION* ex = X509_get_ext(x509, 4);
The X509_EXTENSION object contains a value (ex->value) that is an ASN.1 OCTET STRING. The OCTET STRING contains a DER encoded UTF-8 string. I'm trying to decode the OCTET STRING to get the plain UTF-8 string.
I have tried a few things, such as:
ASN1_STRING_to_UTF8(&buf, ex->value);
and
M_ASN1_OCTET_STRING_print(bio, ex->value);
int len = BIO_read(bio, buf, buf_size);
buf[len] = '\0';
These both give me the DER encoded string. How do I get the plain UTF-8 string?