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

◆ ProvHandle

SafeProvHandle System.Security.Cryptography.PasswordDeriveBytes.ProvHandle
getprivate

Definition at line 90 of file PasswordDeriveBytes.cs.

91 {
92 get
93 {
94 if (_safeProvHandle == null)
95 {
96 lock (this)
97 {
98 if (_safeProvHandle == null)
99 {
100 SafeProvHandle safeProvHandle = AcquireSafeProviderHandle(_cspParams);
102 _safeProvHandle = safeProvHandle;
103 }
104 }
105 }
106 return _safeProvHandle;
107 }
108 }
static SafeProvHandle AcquireSafeProviderHandle(CspParameters cspParams)
static void MemoryBarrier()
Definition Thread.cs:827

Referenced by System.Security.Cryptography.PasswordDeriveBytes.CryptDeriveKey().