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

◆ AppendHashData() [3/3]

override void Internal.Cryptography.HashProviderCng.AppendHashData ( ReadOnlySpan< byte > source)
inlinesealed

Definition at line 54 of file HashProviderCng.cs.

55 {
56 global::Interop.BCrypt.NTSTATUS nTSTATUS = global::Interop.BCrypt.BCryptHashData(_hHash, source, source.Length, 0);
57 if (nTSTATUS != 0)
58 {
59 throw global::Interop.BCrypt.CreateCryptographicException(nTSTATUS);
60 }
61 _running = true;
62 }

References Internal.Cryptography.HashProviderCng._hHash, Internal.Cryptography.HashProviderCng._running, and System.source.