To clarify, in java this can be accomplished with: public static void main (String [] args) { try { KeyStore ks = KeyStore.getInstance("Windows-MY"); ks.load(null, null); Enumeration aliases = ks.aliases(); while (aliases.hasMoreElements()) { Certificate c = ks.getCertificate((String)aliases.nextElement()); System.out.println (c); } } catch (Throwable t) { t.printStackTrace(); } }
On Feb 24, 3:46 pm, Ab <abe.oppenh...@gmail.com> wrote: > Users can install p12 security certificates on their android devices. > Is there a way that I can list the installed certificates > problematically, and obtain references to them (presumably as a > java.security.KeyStore object)? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en