Dig into Https client connection in Android
  Dig into Https client connection in Android    Table of Contents    reference resources  Java Keytool  Certificate formats  Use Https in Android Client  Java SSLContext  Two ways SSL verification  TLSDemo       1  reference resources   http://developer.android.com/training/articles/security-ssl.html  http://ogrelab.ikratko.com/using-android-volley-with-self-signed-certificate/  http://stackoverflow.com/questions/2138940/import-pem-into-java-key-store  http://stackoverflow.com/questions/3685548/java-keytool-easy-way-to-add-server-cert-from-url-port      2  Java Keytool   Java keystore is like a database which store certificates and private keys and protect them by a password maybe. There are at least three format s of that, JKS, PKCS12, JCEKS, and many more.  But in this tutorial, I only consider two formats of that JKS which is the Java's default format and BKS which is the Android's default format.   How to import a certificate to the BKS style KeyStore? First step was to pr...