|
QuickHash Library |
Type Library |
|
CRC16C_CalculateStrHex
void CRC16C_CalculateStrHex( [ out
]CRC16C_HexDigest* pDest, [ in, string ] unsigned char* pSrc,
[ in ] boolean bUpper );
Parameters
pDest
[out] A memory
buffer that will receive the checksum as an ASCII null-terminated string.
Note. All predefined types are specified in the
Predefined Types List.
pSrc
[in] A
null-terminated string for which to calculate the checksum.
bUpper
[in] Uppercase flag.
If bUpper is False, the received checksum represents a lowercase
string, otherwise it represents an uppercase string.
Remarks
Calculates the
CRC16C
checksum for the
null-terminated string
specified by pSrc. The checksum is retrieved as an ASCII null-terminated hexadecimal string in the pDest
memory buffer.
VB Example
Private Sub MyButton_Click()
Dim Checksum As CRC16C_HexDigest
Dim MyStrData As String
MyStrData = "Hello World!"
'Get the checksum
CRC16C_CalculateStrHex Checksum, MyStrData, True
'Show the hexadecimal representation of the checksum
MsgBox QHASH_ASCIItoBSTR(Checksum.Value(0))
End Sub
|
|
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
CRC16C_CalculateStr,
CRC16C_Calculate,
CRC16C_CalculateHex,
QHASH_ASCIItoBSTR
|