Search results for query: *

  1. V

    Getting Firefox certificates

    I did search this before, but I cannot get it to work... Here's my code for getting the certificates: var store = new X509Store(StoreName.My, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadOnly); X509Certificate2Collection certificates = store.Certificates; //get certificates from store...
  2. V

    Getting Firefox certificates

    Hi! I am developing a C# application that has to get and list all certificates on users computer. The problem I cannot solve is how to get and list the certificates from Firefox. Any help would be greatly appreciated :) Thanks!
Back
Top Bottom