It was found that the output of keytool command was not correct with
jdk6u111(201601CPU). It looks like it is caused by the fix of BugID 8139084.
In JDK7, it seems it is fixed with BugID 7017734.
Symptom:
The output with the command below is incorrect.
keytool -keystore keyStr.jks -storepass changeit -storetype jks -list -v
Wrong
------------------------
...
���������������������������������������:
MD5: ............................
SHA1: ............................
���������������������������: ............................
���������������: SHA256withRSA
...
------------------------
Correct
------------------------
...
���������������������������������������:
MD5: ............................
SHA1: ............................
SHA256: ............................
���������������������������: SHA256withRSA
���������������: 3
...
------------------------