RSACryptoServiceProvider

作者:追风剑情 发布于:2015-10-13 15:31 分类:C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Security.Cryptography;
  6.  
  7. namespace RSATest
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string content = "这是测试内容!Hellow";
  14. Console.WriteLine(content);
  15.  
  16. content = RSACrypto.Encrypt(content);
  17. Console.WriteLine(content);
  18.  
  19. content = RSACrypto.Decrypt(content);
  20. Console.WriteLine(content);
  21.  
  22. Console.Read();
  23. }
  24. }
  25. }

  1. using System;
  2. using System.Text;
  3. using System.Collections.Generic;
  4. using System.Security.Cryptography;
  5.  
  6. namespace UNetwork
  7. {
  8. /// <summary>
  9. /// RSA用途
  10. /// 作用一:私钥签名、公钥验签
  11. /// 作用二:公钥加密、私钥解密
  12. /// </summary>
  13. public static class RSACrypto
  14. {
  15. public static string publicKey;
  16. private static string privateKey;
  17. private static RSACryptoServiceProvider provider;
  18.  
  19. static RSACrypto()
  20. {
  21. GenerateKey();
  22. }
  23.  
  24. /// <summary>
  25. /// 生成密钥
  26. /// </summary>
  27. public static void GenerateKey()
  28. {
  29. try
  30. {
  31. provider = new RSACryptoServiceProvider();
  32. publicKey = provider.ToXmlString(false);
  33. privateKey = provider.ToXmlString(true);
  34. }
  35. catch (Exception e)
  36. {
  37. Console.WriteLine(e.ToString());
  38. }
  39. }
  40.  
  41. /// <summary>
  42. /// 加密
  43. /// </summary>
  44. public static string Encrypt(string content)
  45. {
  46. try
  47. {
  48. //设置密钥方式一
  49. //provider.ImportParameters(rsaParameters);
  50. //设置密钥方式二
  51. provider.FromXmlString(publicKey);
  52. byte[] bytes = Encoding.UTF8.GetBytes(content);
  53. bytes = provider.Encrypt(bytes, false);
  54. content = Convert.ToBase64String(bytes);
  55. }
  56. catch (Exception e)
  57. {
  58. Console.WriteLine(e.ToString());
  59. }
  60. return content;
  61. }
  62.  
  63. /// <summary>
  64. /// 解密
  65. /// </summary>
  66. public static string Decrypt(string content)
  67. {
  68. try
  69. {
  70. //设置密钥方式一
  71. //provider.ImportParameters(rsaParameters);
  72. //设置密钥方式二
  73. provider.FromXmlString(privateKey);
  74. byte[] bytes = Convert.FromBase64String(content);
  75. bytes = provider.Decrypt(bytes, false);
  76. content = Encoding.UTF8.GetString(bytes);
  77. }
  78. catch (Exception e)
  79. {
  80. Console.WriteLine(e.ToString());
  81. }
  82. return content;
  83. }
  84.  
  85. // 通过密钥指数和模数创建密钥参数对象
  86. public static RSAParameters CreateRSAParameters(string Exponent, string Modulus)
  87. {
  88. RSAParameters rsaParameters = new RSAParameters();
  89. rsaParameters.Exponent = FromHex(Exponent);//指数
  90. rsaParameters.Modulus = FromHex(Modulus);//模数
  91. return rsaParameters;
  92. }
  93.  
  94. // 16进制的字符串转表示 转 byte[]
  95. public static byte[] FromHex(string hex)
  96. {
  97. if (string.IsNullOrEmpty(hex) || hex.Length % 2 != 0) throw new ArgumentException("not a hexidecimal string");
  98.  
  99. List<byte> bytes = new List<byte>();
  100.  
  101. for (int i = 0; i < hex.Length; i += 2)
  102. {
  103. bytes.Add(Convert.ToByte(hex.Substring(i, 2), 16));
  104. }
  105. return bytes.ToArray();
  106. }
  107. }
  108. }

运行效果

RSA.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号