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

◆ CryptDeriveKey()

static bool Internal.NativeCrypto.CapiHelper.CryptDeriveKey ( SafeProvHandle hProv,
int algId,
SafeHashHandle phHash,
int dwFlags,
out SafeKeyHandle phKey )
inlinestatic

Definition at line 1372 of file CapiHelper.cs.

1373 {
1374 bool result = global::Interop.Advapi32.CryptDeriveKey(hProv, algId, phHash, dwFlags, out phKey);
1375 phKey.SetParent(hProv);
1376 return result;
1377 }

Referenced by Internal.NativeCrypto.CapiHelper.DeriveKey().