Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Retrieves the checksum type.
Syntax
HRESULT get_checksumType (
DWORD* pRetVal
);
Parameters
pRetVal
[out] Returns the checksum type.
Return Value
If successful, returns S_OK
; otherwise, returns an error code.
Remarks
The checksum type is a value that can be mapped to a checksum algorithm. For example, the standard PDB file format can typically have one of the following values:
Checksum Type | CryptoAPI Label | Description |
---|---|---|
0 | <none> | No checksum present. |
1 | CALG_MD5 |
checksum generated with the MD5 hashing algorithm. |
2 | CALG_SHA1 |
checksum generated with the SHA1 hashing algorithm. |
The CryptoAPI
labels are from the ALG_ID
enumeration. For more information on hashing algorithms, consult the CryptoAPI
section of the Microsoft Windows SDK.
To obtain the actual checksum bytes for the source file, call the IDiaSourceFile::get_checksum method.