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

◆ Dispose() [2/2]

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

Reimplemented from System.Security.Cryptography.HMAC.

Definition at line 127 of file HMACSHA384.cs.

128 {
129 if (disposing)
130 {
131 HMACCommon hMacCommon = _hMacCommon;
132 if (hMacCommon != null)
133 {
134 _hMacCommon = null;
135 hMacCommon.Dispose(disposing);
136 }
137 }
138 base.Dispose(disposing);
139 }
void Dispose(bool disposing)
Definition HMACCommon.cs:98

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