I'm trying to create a client certificate for development purposes but Firefox doesn't accept it and Chrome says "ok" but doesn't list it. I suspect that is something related with CA, but anyway I recognize it's a clear lack of basics problem.
The steps I've followed:
1: Create the cert
$>keytool -genkey -alias dev -keystore mystore.jks -validity 3650
The cert created is supposed to be self-signed.
2: Export the cert
$>keytool -export -alias dev -keystore mystore.jks -file dev.crt
Thanks in advance.