keystore
Hello,
I'm new to Java Keytool and I need to know how to display the value of a key that already stored in the keystore.
I tried the following:
>keytool -v -list -keystore keystore.bin -storetype JCEKS -
storepass password -alias mykey
The result I got is Alias Name, Creation date and Entry type then astricks *****.
My question is how to display the actual key of the alias 'mykey'?

