Am trying to read the installed certificates by using code
KeyStore ks = KeyStore.getInstance("Windows-MY")  
ks.load(null, null)    
Enumeration<String> enumeration = ks.aliases()  
while (enumeration.hasMoreElements()) {    
String string = (String) enumeration.nextElement()    
System.out.println(string)   
}  
this code list out the installed certificates on windows but on linux doesn't? tried by changing the keystore providers also.