Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何工具可以验证它是否是 PGP、x.509 等证书?我知道我可以通过 Web 浏览器(IE、FireFox、...)和 Mircrosoft 管理控制台 (MMC) 查看已安装证书的详细信息,但 V3 的证书版本是否表明它是 x.509 类型。(x.509的最新版本是第3版)
对于Eugene Mayevski 'EldoS Corp的建议,执行一个X509TrustManager就可以了。您将在此答案中找到这样的实现。
X509TrustManager
I'm having the following classes on C#:
public class Record { public Record() { this.Artists = new List<Artist>(); } public int Id { get; set; } pu