Lines Matching refs:UINT
198 tstring CMD5Checksum::GetMD5(BYTE *pBuf, UINT nLength) in GetMD5()
207 unsigned char *CMD5Checksum::_GetMD5(BYTE *pBuf, UINT nLength) in _GetMD5()
327 void CMD5Checksum::ByteToDWord(DWORD *Output, BYTE *Input, UINT nLength) in ByteToDWord()
331 UINT i = 0; //index to Output array in ByteToDWord()
332 UINT j = 0; //index to Input array in ByteToDWord()
337 Output[i] = (UINT)Input[j] | in ByteToDWord()
338 (UINT)Input[j + 1] << 8 | in ByteToDWord()
339 (UINT)Input[j + 2] << 16 | in ByteToDWord()
340 (UINT)Input[j + 3] << 24; in ByteToDWord()
357 UINT a = m_lMD5[0]; in Transform()
358 UINT b = m_lMD5[1]; in Transform()
359 UINT c = m_lMD5[2]; in Transform()
360 UINT d = m_lMD5[3]; in Transform()
363 UINT X[16]; in Transform()
482 void CMD5Checksum::DWordToByte(BYTE *Output, DWORD *Input, UINT nLength) in DWordToByte()
485 UINT i = 0; in DWordToByte()
486 UINT j = 0; in DWordToByte()
513 UINT nIndex = (UINT)((m_nCount[0] >> 3) & 0x3f); in Final()
514 UINT nPadLen = (nIndex < 56) ? (56 - nIndex) : (120 - nIndex); in Final()
567 UINT nIndex = (UINT)((m_nCount[0] >> 3) & 0x3f); in FinalChar()
568 UINT nPadLen = (nIndex < 56) ? (56 - nIndex) : (120 - nIndex); in FinalChar()
599 void CMD5Checksum::Update(BYTE *Input, UINT nInputLen) in Update()
602 UINT nIndex = (UINT)((m_nCount[0] >> 3) & 0x3F); in Update()
612 UINT i = 0; in Update()
613 UINT nPartLen = 64 - nIndex; in Update()