Pour une application sécurisée, je dois sélectionner un certificat dans une boîte de dialogue. Comment puis-je accéder au magasin de certificats ou à une partie de celui-ci (par exemple storeLocation="Local Machine"
et storeName="My"
) en utilisant C # et obtenir une collection de tous les certificats à partir de là? Merci d'avance pour votre aide.
X509Store store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly);
foreach (X509Certificate2 certificate in store.Certificates){
//TODO's
}
Essaye ça:
//using System.Security.Cryptography.X509Certificates;
public static X509Certificate2 selectCert(StoreName store, StoreLocation location, string windowTitle, string windowMsg)
{
X509Certificate2 certSelected = null;
X509Store x509Store = new X509Store(store, location);
x509Store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection col = x509Store.Certificates;
X509Certificate2Collection sel = X509Certificate2UI.SelectFromCollection(col, windowTitle, windowMsg, X509SelectionFlag.SingleSelection);
if (sel.Count > 0)
{
X509Certificate2Enumerator en = sel.GetEnumerator();
en.MoveNext();
certSelected = en.Current;
}
x509Store.Close();
return certSelected;
}
La façon la plus simple de le faire est d'ouvrir le magasin de certificats souhaité, puis d'utiliser X509Certificate2UI
.
var store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly);
var selectedCertificate = X509Certificate2UI.SelectFromCollection(
store.Certificates,
"Title",
"MSG",
X509SelectionFlag.SingleSelection);
Plus d'informations dans X509Certificate2UI
sur MSDN .
Oui le X509Store.Certificates
La propriété renvoie un instantané du magasin de certificats X.509.