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

◆ Dispose() [2/2]

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

Reimplemented from System.Security.Cryptography.HMAC.

Definition at line 119 of file HMACSHA1.cs.

120 {
121 if (disposing)
122 {
123 HMACCommon hMacCommon = _hMacCommon;
124 if (hMacCommon != null)
125 {
126 _hMacCommon = null;
127 hMacCommon.Dispose(disposing);
128 }
129 }
130 base.Dispose(disposing);
131 }
void Dispose(bool disposing)
Definition HMACCommon.cs:98

References System.Security.Cryptography.HMACSHA1._hMacCommon, and Internal.Cryptography.HMACCommon.Dispose().