Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Decrypt() [1/2]

void System.Security.Cryptography.AesGcm.Decrypt ( byte[] nonce,
byte[] ciphertext,
byte[] tag,
byte[] plaintext,
byte?[] associatedData = null )
inline

Definition at line 53 of file AesGcm.cs.

54 {
55 AeadCommon.CheckArgumentsForNull(nonce, plaintext, ciphertext, tag);
56 Decrypt((ReadOnlySpan<byte>)nonce, (ReadOnlySpan<byte>)ciphertext, (ReadOnlySpan<byte>)tag, (Span<byte>)plaintext, (ReadOnlySpan<byte>)associatedData);
57 }
void Decrypt(byte[] nonce, byte[] ciphertext, byte[] tag, byte[] plaintext, byte[]? associatedData=null)
Definition AesGcm.cs:53

References System.Security.Cryptography.AeadCommon.CheckArgumentsForNull(), and System.Security.Cryptography.AesGcm.Decrypt().

Referenced by System.Security.Cryptography.AesGcm.Decrypt().