Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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:

Namespaces

namespace  ROOT
 tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tbb::task_arena without forward declaring tbb::interface7
 

Macros

#define F1(x, y, z)
 
#define F2(x, y, z)
 
#define F3(x, y, z)
 
#define F4(x, y, z)
 
#define MD5STEP(f, w, x, y, z, data, s)
 

Functions

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

Macro Definition Documentation

◆ F1

#define F1 ( x,
y,
z )
Value:
(z ^ (x & (y ^ z)))
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17

Definition at line 267 of file TMD5.cxx.

◆ F2

#define F2 ( x,
y,
z )
Value:
F1(z, x, y)
#define F1(x, y, z)
Definition TMD5.cxx:267

Definition at line 268 of file TMD5.cxx.

◆ F3

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

Definition at line 269 of file TMD5.cxx.

◆ F4

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

Definition at line 270 of file TMD5.cxx.

◆ MD5STEP

#define MD5STEP ( f,
w,
x,
y,
z,
data,
s )
Value:
( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
#define f(i)
Definition RSha256.hxx:104
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void w
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data

Definition at line 273 of file TMD5.cxx.

Function Documentation

◆ operator<<()

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

Input operator. Delegate to Streamer.

Definition at line 554 of file TMD5.cxx.

◆ operator==()

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

Compare two message digests for equality.

Definition at line 372 of file TMD5.cxx.