|
@@ -9,6 +9,9 @@ using System.Text;
|
|
|
using System.IO;
|
|
|
using System.Net;
|
|
|
using MySystem.PxcModels;
|
|
|
+using Org.BouncyCastle.Crypto.Modes;
|
|
|
+using Org.BouncyCastle.Crypto.Parameters;
|
|
|
+using Org.BouncyCastle.Crypto.Engines;
|
|
|
|
|
|
namespace MySystem
|
|
|
{
|
|
@@ -322,6 +325,47 @@ namespace MySystem
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ // public string RSADecrypt(string text)
|
|
|
+ // {
|
|
|
+ // // byte[] key = Encoding.UTF8.GetBytes(AppConfig.WeChatParam.AesGemKey);
|
|
|
+ // // byte[] nonce = Encoding.UTF8.GetBytes("1234567890ab");
|
|
|
+ // // byte[] ciphertext = Convert.FromBase64String(text);
|
|
|
+
|
|
|
+ // // AesGcm aes = new AesGcm(key);
|
|
|
+ // // byte[] plaintext = new byte[ciphertext.Length];
|
|
|
+ // // aes.Decrypt(nonce, ciphertext, plaintext, null);
|
|
|
+ // // return Encoding.UTF8.GetString(plaintext);
|
|
|
+ // }
|
|
|
+ public string AesGcmDecrypt(string associatedData, string nonce, string ciphertext)
|
|
|
+ {
|
|
|
+ // GcmBlockCipher gcmBlockCipher = new GcmBlockCipher(new AesEngine());
|
|
|
+ // AeadParameters aeadParameters = new AeadParameters(
|
|
|
+ // new KeyParameter(Encoding.UTF8.GetBytes(AppConfig.WeChatParam.AesGemKey)),
|
|
|
+ // 128,
|
|
|
+ // Encoding.UTF8.GetBytes(nonce),
|
|
|
+ // Encoding.UTF8.GetBytes(associatedData));
|
|
|
+ // gcmBlockCipher.Init(false, aeadParameters);
|
|
|
+
|
|
|
+ // byte[] data = Convert.FromBase64String(ciphertext);
|
|
|
+ // byte[] plaintext = new byte[gcmBlockCipher.GetOutputSize(data.Length)];
|
|
|
+ // int length = gcmBlockCipher.ProcessBytes(data, 0, data.Length, plaintext, 0);
|
|
|
+ // gcmBlockCipher.DoFinal(plaintext, length);
|
|
|
+ // return Encoding.UTF8.GetString(plaintext);
|
|
|
+
|
|
|
+ byte[] key = Encoding.UTF8.GetBytes(AppConfig.WeChatParam.AesGemKey); // 256-bit key
|
|
|
+ byte[] nonceByte = Encoding.UTF8.GetBytes(nonce); // 96-bit nonce
|
|
|
+ byte[] cipherByte = Convert.FromBase64String(ciphertext);
|
|
|
+ byte[] associatedByte = Encoding.UTF8.GetBytes(associatedData);
|
|
|
+
|
|
|
+ GcmBlockCipher cipher = new GcmBlockCipher(new AesEngine());
|
|
|
+ AeadParameters parameters = new AeadParameters(new KeyParameter(key), 128, nonceByte, associatedByte);
|
|
|
+ cipher.Init(false, parameters);
|
|
|
+
|
|
|
+ byte[] plaintext = new byte[cipher.GetOutputSize(cipherByte.Length)];
|
|
|
+ int len = cipher.ProcessBytes(cipherByte, 0, cipherByte.Length, plaintext, 0);
|
|
|
+ cipher.DoFinal(plaintext, len);
|
|
|
+ return Encoding.UTF8.GetString(plaintext);
|
|
|
+ }
|
|
|
public string postJson(string url, string postData, string privateKey, string merchantId, string serialNo, string method = "POST")
|
|
|
{
|
|
|
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
|