public static bool CryptCreateHash( SafeProvHandle hProv, int algId, SafeKeyHandle hKey, CryptCreateHashFlags dwFlags, out SafeHashHandle phHash) { bool response = _CryptCreateHash(hProv, algId, hKey, dwFlags, out phHash); phHash.SetParent(hProv); return response; }
internal static partial bool CryptCreateHash( SafeProvHandle hProv, int Algid, SafeCapiKeyHandle hKey, CryptCreateHashFlags dwFlags, out SafeHashHandle phHash);
private static extern bool _CryptCreateHash(SafeProvHandle hProv, int algId, SafeKeyHandle hKey, CryptCreateHashFlags dwFlags, out SafeHashHandle phHash);
internal static extern bool CryptCreateHash( SafeProvHandle hProv, int Algid, SafeKeyHandle hKey, CryptCreateHashFlags dwFlags, out SafeHashHandle phHash);