我有一个通过MakeCert生成的证书。我想将此证书用于使用PeerTrust的WCF消息安全性。如何使用C#或.NET以编程方式将证书安装到“受信任的人”本地计算机证书存储中?
我有一个CER文件,但也可以创建一个PFX。
我相信这是正确的:
using (X509Store store = new X509Store(StoreName.TrustedPeople, StoreLocation.LocalMachine)) { store.Open(OpenFlags.ReadWrite); store.Add(cert); //where cert is an X509Certificate object }