예제 #1
0
 /// <summary>
 /// 解密微信支付接口 ciphertext 内容
 /// </summary>
 /// <returns></returns>
 public static string AesGcmDecryptCiphertext(string aes_key, string nonce, string associated_data, string ciphertext)
 {
     return(EncryptHelper.AesGcmDecrypt(aes_key, nonce, associated_data, ciphertext));
 }