reSIProcate/stack  9694
Defines | Functions | Variables
md5.cxx File Reference
#include "md5.hxx"
Include dependency graph for md5.cxx:

Go to the source code of this file.

Defines

#define S11   7
#define S12   12
#define S13   17
#define S14   22
#define S21   5
#define S22   9
#define S23   14
#define S24   20
#define S31   4
#define S32   11
#define S33   16
#define S34   23
#define S41   6
#define S42   10
#define S43   15
#define S44   21
#define F(x, y, z)   (((x) & (y)) | ((~x) & (z)))
#define G(x, y, z)   (((x) & (z)) | ((y) & (~z)))
#define H(x, y, z)   ((x) ^ (y) ^ (z))
#define I(x, y, z)   ((y) ^ ((x) | (~z)))
#define ROTATE_LEFT(x, n)   (((x) << (n)) | ((x) >> (32-(n))))
#define FF(a, b, c, d, x, s, ac)
#define GG(a, b, c, d, x, s, ac)
#define HH(a, b, c, d, x, s, ac)
#define II(a, b, c, d, x, s, ac)

Functions

static void MD5Transform PROTO_LIST ((UINT4[4], unsigned char[64]))
static void Encode PROTO_LIST ((unsigned char *, UINT4 *, unsigned int))
static void Decode PROTO_LIST ((UINT4 *, unsigned char *, unsigned int))
static void MD5_memcpy PROTO_LIST ((POINTER, POINTER, unsigned int))
static void MD5_memset PROTO_LIST ((POINTER, int, unsigned int))
void MD5Init (context) MD5_CTX *context

Variables

static unsigned char PADDING [64]
unsigned char * input
unsigned int inputLen
MD5_CTXcontext
unsigned char block [64]
unsigned int len
int value

Define Documentation

#define F (   x,
  y,
 
)    (((x) & (y)) | ((~x) & (z)))

Definition at line 64 of file md5.cxx.

#define FF (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

Definition at line 76 of file md5.cxx.

#define G (   x,
  y,
 
)    (((x) & (z)) | ((y) & (~z)))

Definition at line 65 of file md5.cxx.

#define GG (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

Definition at line 81 of file md5.cxx.

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

Definition at line 66 of file md5.cxx.

#define HH (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

Definition at line 86 of file md5.cxx.

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

Definition at line 67 of file md5.cxx.

#define II (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

Definition at line 91 of file md5.cxx.

#define ROTATE_LEFT (   x,
 
)    (((x) << (n)) | ((x) >> (32-(n))))

Definition at line 71 of file md5.cxx.

#define S11   7

Definition at line 31 of file md5.cxx.

#define S12   12

Definition at line 32 of file md5.cxx.

#define S13   17

Definition at line 33 of file md5.cxx.

#define S14   22

Definition at line 34 of file md5.cxx.

#define S21   5

Definition at line 35 of file md5.cxx.

#define S22   9

Definition at line 36 of file md5.cxx.

#define S23   14

Definition at line 37 of file md5.cxx.

#define S24   20

Definition at line 38 of file md5.cxx.

#define S31   4

Definition at line 39 of file md5.cxx.

#define S32   11

Definition at line 40 of file md5.cxx.

#define S33   16

Definition at line 41 of file md5.cxx.

#define S34   23

Definition at line 42 of file md5.cxx.

#define S41   6

Definition at line 43 of file md5.cxx.

#define S42   10

Definition at line 44 of file md5.cxx.

#define S43   15

Definition at line 45 of file md5.cxx.

#define S44   21

Definition at line 46 of file md5.cxx.


Function Documentation

void MD5Init ( context  )
static void MD5Transform PROTO_LIST ( (UINT4[4], unsigned char[64])  ) [static]
static void Encode PROTO_LIST ( (unsigned char *, UINT4 *, unsigned int)  ) [static]
static void Decode PROTO_LIST ( (UINT4 *, unsigned char *, unsigned int)  ) [static]
static void MD5_memcpy PROTO_LIST ( (POINTER, POINTER, unsigned int)  ) [static]
static void MD5_memset PROTO_LIST ( (POINTER, int, unsigned int)  ) [static]

Variable Documentation

unsigned char block[64]

Definition at line 186 of file md5.cxx.

Referenced by main().

Definition at line 158 of file md5.cxx.

Referenced by main().

Definition at line 116 of file md5.cxx.

Referenced by resip::Helper::jitterValue(), and main().

unsigned int inputLen

Definition at line 118 of file md5.cxx.

unsigned int len
unsigned char PADDING[64] [static]
Initial value:
 {
  0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}

Definition at line 56 of file md5.cxx.

int value