Here are the easy steps how to do this :
1. get the certificates file
adb pull /system/etc/security/cacerts.bks cacerts.bks
2. download http://bouncycastle.org/download/bcprov-jdk16-141.jar and place it on $JAVA_HOME/jre/lib/ext/
3. run the keytool utility
keytool -storetype BKS -provider org.bouncycastle.jce.provider.BouncyCastleProvider -storepass
1 comment:
You're missing an empty string there :) For me the correct command is:
keytool -list -keystore ./cacerts.bks -storetype BKS -provider org.bouncycastle.jce.provider.BouncyCastleProvider -v -storepass ""
Cheers
Sven
Post a Comment