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

◆ DecryptCore()

void System.Security.Cryptography.AesCcm.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 AesCcm.cs.

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

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

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