通过C#来加载X509格式证书文件并生成RSA对象详解编程语言

private static RSACryptoServiceProvider GetPrivateKey(string priKeyFile, string keyPwd) 
{ 
    var pc = new X509Certificate2(priKeyFile, keyPwd, X509KeyStorageFlags.MachineKeySet); 
    return (RSACryptoServiceProvider) pc.PrivateKey; 
} 
 
private static RSACryptoServiceProvider GetPublicKey(string pubKeyFile) 
{ 
    var pc = new X509Certificate2(pubKeyFile); 
    return (RSACryptoServiceProvider) pc.PublicKey.Key; 
}

*.cer格式公钥证书及*.pfx格式私钥证书

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/15845.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论