GetHashFromFileW Function
Generates a hash over the contents of the file specified by a Unicode string.
This function has been deprecated in the .NET Framework version 4. Use the ICLRStrongName::GetHashFromFileW method instead.
HRESULT GetHashFromFileW (
[in] LPCWSTR wszFilePath,
[in, out] unsigned int *piHashAlg,
[out] BYTE *pbHash,
[in] DWORD cchHash,
[out] DWORD *pchHash
);
Parameters
wszFilePath
[in] The Unicode name of the file to hash.piHashAlg
[in, out] The algorithm to use when generating the hash. Valid algorithms are those defined by the Win32 CryptoAPI. If piHashAlg is set to 0, the default algorithm CALG_SHA-1 is used.pbHash
[out] A byte array containing the generated hash.cchHash
[in] The maximum size of the buffer pointed to by pbHash.pchHash
[out] The size, in bytes, of pbHash.
Remarks
This function is the same as GetHashFromFile, except that the file name specification is Unicode instead of ANSI.
Requirements
Platforms: See .NET Framework System Requirements.
Header: StrongName.h
Library: Included as a resource in MsCorEE.dll
.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0
See Also
Reference
ICLRStrongName::GetHashFromFileW Method