How to get Windows intermediate Certificates, by using Java?
843811Jun 3 2009 — edited Dec 3 2009Hello,
My goal is to check if certificate is valid, for this I have also to check it's all certification path.
That looks like this (from end-user to Root):
certificate -> IssuingCA -> PolicyCA -> RootCA
The problem is I have access only to first certificate and I also can get root certificate from Windows KeyStore:
KeyStore ks = KeyStore.getInstance("Windows-ROOT");
<...>
IssuingCa and PolicyCA are also installed in Windows keystore, but as "Intermediate certification authorities", is there a way to access these certificates?
Or should I use some different approach?