The C++ framework for developing highly scalable, high performance servers on Windows platforms.

MD5.cpp File Reference


Namespaces

namespace  JetByteTools
namespace  JetByteTools::Core

Defines

#define UL_MD5LENGTH   16
#define byteReverse(buf, len)
#define F1(x, y, z)   (z ^ (x & (y ^ z)))
#define F2(x, y, z)   F1(z, x, y)
#define F3(x, y, z)   (x ^ y ^ z)
#define F4(x, y, z)   (y ^ (x | ~z))
#define MD5STEP(f, w, x, y, z, data, s)   ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )

Functions

static void ul_MD5Init (struct UL_MD5Context *context)
static void ul_MD5Update (struct UL_MD5Context *context, unsigned char const *buf, unsigned len)
static void ul_MD5Final (unsigned char digest[UL_MD5LENGTH], struct UL_MD5Context *context)
static void ul_MD5Transform (uint32_t buf[4], uint32_t const in[16])


Define Documentation

#define byteReverse ( buf,
len   ) 

#define F1 ( x,
y,
 )     (z ^ (x & (y ^ z)))

#define F2 ( x,
y,
 )     F1(z, x, y)

#define F3 ( x,
y,
 )     (x ^ y ^ z)

#define F4 ( x,
y,
 )     (y ^ (x | ~z))

#define MD5STEP ( f,
w,
x,
y,
z,
data,
 )     ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )

#define UL_MD5LENGTH   16


Generated on Sun Sep 12 19:06:43 2021 for The Server Framework - v7.4 by doxygen 1.5.3