GetHashFromAssemblyFile Function
Gets a hash of the specified assembly file, using the specified hash algorithm.
This function has been deprecated in the .NET Framework version 4. Use the ICLRStrongName::GetHashFromAssemblyFile method instead.
HRESULT GetHashFromAssemblyFile (
[in] LPCSTR szFilePath,
[in, out] unsigned int *piHashAlg,
[out] BYTE *pbHash,
[in] DWORD cchHash,
[out] DWORD *pchHash
);
Parameters
szFilePath
[in] The path to the file to be hashed.piHashAlg
[in, out] A constant that specifies the hash algorithm. Use zero for the default hash algorithm.pbHash
[out] The returned hash buffer.cchHash
[in] The requested maximum size of pbHash.pchHash
[out] The returned size, in bytes, of pbHash.
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::GetHashFromAssemblyFile Method