Exemple #1
0
            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;
            }
Exemple #2
0
 internal static partial bool CryptCreateHash(
     SafeProvHandle hProv,
     int Algid,
     SafeCapiKeyHandle hKey,
     CryptCreateHashFlags dwFlags,
     out SafeHashHandle phHash);
Exemple #3
0
 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);