Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SafeAlgorithmHandle.cs
Go to the documentation of this file.
1using System;
4
6
7internal sealed class SafeAlgorithmHandle : Microsoft.Win32.SafeHandles.SafeBCryptHandle
8{
9 protected sealed override bool ReleaseHandle()
10 {
12 return num == 0;
13 }
14
15 [DllImport("BCrypt.dll")]
16 private static extern uint BCryptCloseAlgorithmProvider(IntPtr hAlgorithm, int dwFlags);
17}
static uint BCryptCloseAlgorithmProvider(IntPtr hAlgorithm, int dwFlags)