var gcm = new AesGcm(Encoding.UTF8.GetBytes(key));
byte[] cipherTextBytes = Convert.FromBase64String(_ciphertext);
byte[] nonce = Encoding.UTF8.GetBytes(_nonce);
byte[] ciphertext = cipherTextBytes.Take(cipherTextBytes.Length - 16).ToArray();
byte[] plaintext = new byte[ciphertext.Length];
byte[] tag = cipherTextBytes.Skip(ciphertext.Length).Take(16).ToArray();
byte[] associatedData = Encoding.UTF8.GetBytes(_associated_data);
gcm.Decrypt(nonce, ciphertext, tag, plaintext, associatedData);
string text = Encoding.UTF8.GetString(plaintext);
提示错误
System.Security.Cryptography.CryptographicException:“The computed authentication tag did not match the input authentication tag.”
建议您前往微信支付APIV3文档, 点击右下角‘技术咨询’实时寻求技术帮助。
请注意在线技术支持的在线时间:工作日 10:00-12:00;14:00-18:00
若您的问题得到解决,请回社区晒出解决方案,以帮助更多遇到此问题的人,感谢您的支持~
在线咨询主要解决微信支付接口的技术类问题,比如调用接口报错等问题,如遇非此类问题请寻找其他更合适的方式咨询哈。
这个错误是API3 key不对
请问问题解决了吗?我也遇到这个问题