我有一段用python 写的解密的代码,我想用C#来实现,又熟悉的朋友吗?
backend = default_backend()
temp =algorithms.AES(key)
cipher = Cipher(algorithms.AES(key), modes.GCM(iv, tag), backend=backend)
decryptor = cipher.decryptor()
cleartext = decryptor.update(ciphertext) + decryptor.finalize()

有熟悉aes-256-gcm 加密解密算法的朋友吗
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-