web-dev-qa-db-ja.com

C#の証明書ストアから証明書のリストを取得します

安全なアプリケーションのために、ダイアログで証明書を選択する必要があります。証明書ストアまたはその一部にアクセスするにはどうすればよいですか(例:storeLocation="Local Machine"およびstoreName="My")C#を使用して、そこからすべての証明書のコレクションを取得しますか?よろしくお願いします。

36
Kottan
X509Store store = new X509Store(StoreName.My, StoreLocation.LocalMachine);

store.Open(OpenFlags.ReadOnly);

foreach (X509Certificate2 certificate in store.Certificates){
    //TODO's
}
60
acejologz

これを試して:

//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;
}
16
Cobaia

最も簡単な方法は、目的の証明書ストアを開き、X509Certificate2UI

var store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly);
var selectedCertificate = X509Certificate2UI.SelectFromCollection(
    store.Certificates, 
    "Title", 
    "MSG", 
    X509SelectionFlag.SingleSelection);

詳細は X509Certificate2UI on MSDN

9
Roni Fuchs

はい X509Store.Certificatesプロパティは、X.509証明書ストアのスナップショットを返します。

4
Steve Gilham