时间:2021-05-20
1. RSA加密与解密 -- 使用公钥加密、私钥解密
public class RSATool { public string Encrypt(string strText, string strPublicKey) { RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); rsa.FromXmlString(strPublicKey); byte[] byteText = Encoding.UTF8.GetBytes(strText); byte[] byteEntry = rsa.Encrypt(byteText, false); return Convert.ToBase64String(byteEntry); } public string Decrypt(string strEntryText,string strPrivateKey) { RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); rsa.FromXmlString(strPrivateKey); byte[] byteEntry = Convert.FromBase64String(strEntryText); byte[] byteText = rsa.Decrypt(byteEntry, false); return Encoding.UTF8.GetString(byteText); } public Dictionary<string,string> GetKey() { Dictionary<string, string> dictKey = new Dictionary<string, string>(); RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); dictKey.Add("PublicKey", rsa.ToXmlString(false)); dictKey.Add("PrivateKey", rsa.ToXmlString(true)); return dictKey; } }测试:
RSATool myRSA = new RSATool(); Dictionary<string, string> dictK = new Dictionary<string, string>(); dictK = myRSA.GetKey(); string strText = "123456"; Console.WriteLine("要加密的字符串是:{0}", strText); string str1 = myRSA.Encrypt("123456", dictK["PublicKey"]); Console.WriteLine("加密后的字符串:{0}", str1); string str2 = myRSA.Decrypt(str1, dictK["PrivateKey"]); Console.WriteLine("解密后的字符串:{0}", str2);2. RSA加密与解密 -- 使用同一个密钥容器进行加密与解密
public class RSAToolX { public string Encrypt(string strText) { CspParameters CSApars = new CspParameters(); CSApars.KeyContainerName = "Test001"; RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(CSApars); byte[] byteText = Encoding.UTF8.GetBytes(strText); byte[] byteEntry = rsa.Encrypt(byteText, false); return Convert.ToBase64String(byteEntry); } public string Decrypt(string strEntryText) { CspParameters CSApars = new CspParameters(); CSApars.KeyContainerName = "Test001"; RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(CSApars); byte[] byteEntry = Convert.FromBase64String(strEntryText); byte[] byteText = rsa.Decrypt(byteEntry, false); return Encoding.UTF8.GetString(byteText); } }测试 :
RSAToolX myRSA = new RSAToolX(); string strText = "123456"; Console.WriteLine("要加密的字符串是:{0}", strText); string str1 = myRSA.Encrypt("123456"); Console.WriteLine("加密后的字符串:{0}", str1); string str2 = myRSA.Decrypt(str1); Console.WriteLine("解密后的字符串:{0}", str2);总结
以上所述是小编给大家介绍的C#中RSA加密与解密的实例详解,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#自定义RSA加密解密及RSA签名和验证类。分享给大家供大家参考。具体分析如下:这个C#类自定义RSA加密解密及RSA签名和验证,包含了RSA加
java加密之RSA算法加解密与解密的实例详解前言:RSA是第一个比较完善的公开密钥算法,它既能用于加密,也能用于数字签名。RSA以它的三个发明者RonRive
本文实例为大家分享了C#使用RSA加密解密文件的具体代码,供大家参考,具体内容如下加密代码://加密代码,注意会覆盖原文件,里面有我的公钥,你要用时记得覆盖我的
本文实例讲述了C#RSA分段加解密实现方法。分享给大家供大家参考,具体如下:RSA加解密:1024位的证书,加密时最大支持117个字节,解密时为128;2048
在asp中通过vbs类实现rsa加密与解密,建议入精华本文章有两文件组成test.asp测试演示文件clsrsa.asp实现rsa加密与解密的vbs类文件下面是