Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 34 of file crypt.c.
Referenced by MD4Final(), MD4Update(), MD5Final(), and MD5Update().
{ unsigned int t; do { t = (unsigned int)((unsigned)buf[3] << 8 | buf[2]) << 16 | ((unsigned)buf[1] << 8 | buf[0]); *(unsigned int *)buf = t; buf += 4; } while (--longs); }