I can get extension value in byte array.
byte[] value = x509Cert.getExtensionValue(oid);
How can I read the value?
I can get extension value in byte array.
byte[] value = x509Cert.getExtensionValue(oid);
How can I read the value?
I think, this may help you, since hex-values or a base64 encoded string is actually not readable for humans: https://stackoverflow.com/a/13802277/5847341