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

◆ BCryptCreateHash() [1/4]

static NTSTATUS Interop.BCrypt.BCryptCreateHash ( Microsoft::Win32::SafeHandles::SafeBCryptAlgorithmHandle hAlgorithm,
out Microsoft::Win32::SafeHandles::SafeBCryptHashHandle phHash,
IntPtr pbHashObject,
int cbHashObject,
ReadOnlySpan< byte > secret,
int cbSecret,
BCryptCreateHashFlags dwFlags )
inlinestaticpackage

Definition at line 415 of file Interop.cs.

416 {
417 return BCryptCreateHash(hAlgorithm, out phHash, pbHashObject, cbHashObject, ref MemoryMarshal.GetReference(secret), cbSecret, dwFlags);
418 }
static NTSTATUS BCryptCreateHash(SafeBCryptAlgorithmHandle hAlgorithm, out SafeBCryptHashHandle phHash, IntPtr pbHashObject, int cbHashObject, ReadOnlySpan< byte > secret, int cbSecret, BCryptCreateHashFlags dwFlags)
Definition Interop.cs:473

References Interop.BCrypt.BCryptCreateHash().