Sunday, April 28, 2013

PKCS Keystore using KeyTools

PKCS Keystore using KeyTools


To create a keystore of PKCS12 type (.pfx) you have to specify it with -storetype PKCS12:



keytool -genkey -alias {desired alias certificate} -keystore {path to keystore.pfx} -storepass {password} -validity 365 -keyalg RSA -keysize 2048 -storetype pkcs12




Use SSH Keys to clone GIT Repository using SSH

  1. Generate a New SSH Key Pair bash ssh-keygen -t rsa -b 4096 -C "HSingh@MindTelligent.com" -t rsa specifies the type of key (...