I have a problem with reading certificate information. I want to read full information using java with bouncycastle library in Android programmatically. Now, i'm just using keytool command in console:
>keytool -list -keystore 1.p12 -storetype pkcs12 -v
Any suggestions?
I've found solution, the main idea is to cast certificate to x509, then get the SubjectDN and parse values.