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

◆ DecryptCore()

void System.Security.Cryptography.AesGcm.DecryptCore ( ReadOnlySpan< byte > nonce,
ReadOnlySpan< byte > ciphertext,
ReadOnlySpan< byte > tag,
Span< byte > plaintext,
ReadOnlySpan< byte > associatedData = default(ReadOnlySpan<byte>) )
inlineprivate

Definition at line 99 of file AesGcm.cs.

100 {
101 AeadCommon.Decrypt(_keyHandle, nonce, associatedData, ciphertext, tag, plaintext, clearPlaintextOnFailure: true);
102 }

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

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