ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Macros | Functions
TMD5.cxx File Reference
#include "TMD5.h"
#include "TBuffer.h"
#include "TError.h"
#include "TSystem.h"
#include "Bytes.h"
#include <string.h>
#include <errno.h>
Include dependency graph for TMD5.cxx:

Go to the source code of this file.

Macros

#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

 ClassImp (TMD5) TMD5
 Create TMD5 object. More...
 
Bool_t operator== (const TMD5 &m1, const TMD5 &m2)
 Compare two message digests for equality. More...
 
TBufferoperator<< (TBuffer &buf, const TMD5 &uuid)
 Input operator. Delegate to Streamer. More...
 

Macro Definition Documentation

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

Definition at line 266 of file TMD5.cxx.

Referenced by testMultiRootFinder(), and TMD5::Transform().

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

Definition at line 267 of file TMD5.cxx.

Referenced by testMultiRootFinder(), and TMD5::Transform().

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

Definition at line 268 of file TMD5.cxx.

Referenced by TMD5::Transform().

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

Definition at line 269 of file TMD5.cxx.

Referenced by TMD5::Transform().

#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 272 of file TMD5.cxx.

Referenced by TMD5::Transform().

Function Documentation

ClassImp ( TMD5  )

Create TMD5 object.

Set bit count to 0 and buffer to mysterious initialization constants.

Definition at line 41 of file TMD5.cxx.

TBuffer& operator<< ( TBuffer buf,
const TMD5 uuid 
)

Input operator. Delegate to Streamer.

Definition at line 553 of file TMD5.cxx.

Bool_t operator== ( const TMD5 m1,
const TMD5 m2 
)

Compare two message digests for equality.

Definition at line 371 of file TMD5.cxx.