从代码中读取正在运行的应用程序的签名证书

时间:2014-06-26 09:17:52

标签: c# .net certificate x509

我有一个应用程序,我通过Visual Studio 2013与PFX证书签名。

我想从应用程序内部读取此证书。我猜我必须使用反射。

我已经尝试从清单中获取它:

Assembly a = Assembly.GetExecutingAssembly();
X509Certificate x = a.ManifestModule.GetSignerCertificate();

x仍为NULL

我如何阅读证书?

0 个答案:

没有答案