Please note the following legal notice. This function is derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm Decodes input. Assumes len is xple of 4 Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | _md5_decode | (uint32_t*,unsigned char*,uint32_t,) |
Declared and defined in file: hzCodec.cpp
Function Logic:
Function body:
void _md5_decode (uint32_t* out)unsigned char* in, uint32_t len,
{
// Category: Codec
//
// Please note the following legal notice. This function is derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm
//
// Decodes input. Assumes len is xple of 4
//
// Arguments: 1) out Pointer into output buffer
// 2) in Pointer into input buffer
// 3) len Buffer length
//
// Returns: None
_hzfunc(__func__) ;
uchar* e ; // Input limiter
for (e = in + len ; in < e ; in += 4)
*out++ = in[0]| (in[1]<< 8)| (in[2]<< 16)|(in[3]<< 24);
}