I need to select one certificate from the Windows repository from my desktop program java. The code:
KeyStore ks = KeyStore.getInstance("Windows-MY");
...
Is javathere something "ready to use" like this Win dialog?
I worked with C #, and there are:
X509Certificate2Collection sel = X509Certificate2UI.SelectFromCollection(certificates, null, null, X509SelectionFlag.SingleSelection);
Is there an javaequivalent for this, or do I need to create my own dialogfrom the certArray key store?
source
share