Decrypt input using AES-GCM in one-off operation
public static byte[] Decrypt( byte[] input, byte[] key, byte[] iv, byte[] aad, byte[] tag )
Public Shared Function Decrypt ( _ input As Byte(), _ key As Byte(), _ iv As Byte(), _ aad As Byte(), _ tag As Byte() _ ) As Byte()
Decrypted plaintext in byte array, or empty array on error
Use General.ErrorCode to find the code of the last error.
VB6/C equivalent: GCM_Decrypt