12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Security.Cryptography;
- using System.Text;
- using XC.Framework.Security.RSAUtil;
- namespace HaBookCms.Common.CryptHelper
- {
- /// <summary>
- /// RSA加密解密
- /// https://github.com/stulzq/RSAUtil
- /// </summary>
- public class RSACrypt
- {
- private readonly RsaPkcs1Util _RsaUtil;
- private readonly Encoding _encoding;
- /// <summary>
- /// 获得私钥和公钥
- /// [0]=privateKey 私钥
- /// [1]=publicKey 公钥
- /// </summary>
- /// <returns></returns>
- public static List<string> GetKey()
- {
- return RsaKeyGenerator.Pkcs1Key(2048, true);
- }
- /// <summary>
- /// 实例化
- /// </summary>
- /// <param name="encoding">编码类型</param>
- /// <param name="privateKey">私钥</param>
- /// <param name="publicKey">公钥</param>
- public RSACrypt(string privateKey, string publicKey)
- {
- _encoding = Encoding.UTF8;
- _RsaUtil = new RsaPkcs1Util(_encoding, publicKey, privateKey, 1024);
- }
- /// <summary>
- /// 加密
- /// </summary>
- /// <param name="code">加密代码</param>
- /// <returns></returns>
- public string Encrypt(string code)
- {
- return _RsaUtil.Encrypt(code, RSAEncryptionPadding.Pkcs1);
- }
- /// <summary>
- /// 解密
- /// </summary>
- /// <param name="code">解密代码</param>
- /// <returns></returns>
- public string Decrypt(string code)
- {
- return _RsaUtil.Decrypt(code, RSAEncryptionPadding.Pkcs1);
- }
- }
- }
|