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 TypeFunction nameArguments
void_md5_decode(uint32_t*,unsigned char*,uint32_t,)

Declared and defined in file: hzCodec.cpp

Function Logic:

0:START 1:unknown 2:( 3:( 4:in 5:* 6: No text

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);
}