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

◆ Dispose() [2/2]

override void System.Security.Cryptography.KeyedHashAlgorithm.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.Security.Cryptography.HashAlgorithm.

Definition at line 34 of file KeyedHashAlgorithm.cs.

35 {
36 if (disposing)
37 {
38 if (KeyValue != null)
39 {
40 Array.Clear(KeyValue);
41 }
42 KeyValue = null;
43 }
44 base.Dispose(disposing);
45 }

References System.Array.Clear(), and System.Security.Cryptography.KeyedHashAlgorithm.KeyValue.