SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Macros
Hash.cpp File Reference

Go to the source code of this file.

Macros

#define byteReverse(buf, len)   /* Nothing */
#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 )

Macro Definition Documentation

#define byteReverse (   buf,
  len 
)    /* Nothing */

Definition at line 74 of file Hash.cpp.

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

Definition at line 197 of file Hash.cpp.

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

Definition at line 198 of file Hash.cpp.

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

Definition at line 199 of file Hash.cpp.

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

Definition at line 200 of file Hash.cpp.

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

Definition at line 207 of file Hash.cpp.


SHOGUN Machine Learning Toolbox - Documentation