Defines | Variables
md5.cpp File Reference
#include "md5.h"
#include <string.h>
Include dependency graph for md5.cpp:

Go to the source code of this file.

Defines

#define F(x, y, z)   (((x) & (y)) | ((~x) & (z)))
#define FF(a, b, c, d, x, s, ac)
#define G(x, y, z)   (((x) & (z)) | ((y) & (~z)))
#define GG(a, b, c, d, x, s, ac)
#define H(x, y, z)   ((x) ^ (y) ^ (z))
#define HH(a, b, c, d, x, s, ac)
#define I(x, y, z)   ((y) ^ ((x) | (~z)))
#define II(a, b, c, d, x, s, ac)
#define ROTATE_LEFT(x, n)   (((x) << (n)) | ((x) >> (32-(n))))
#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

Variables

static unsigned char PADDING [64]

Define Documentation

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

Definition at line 63 of file md5.cpp.

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

Definition at line 75 of file md5.cpp.

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

Definition at line 64 of file md5.cpp.

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

Definition at line 81 of file md5.cpp.

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

Definition at line 65 of file md5.cpp.

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

Definition at line 86 of file md5.cpp.

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

Definition at line 66 of file md5.cpp.

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

Definition at line 91 of file md5.cpp.

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

Definition at line 69 of file md5.cpp.

#define S11   7

Definition at line 39 of file md5.cpp.

#define S12   12

Definition at line 40 of file md5.cpp.

#define S13   17

Definition at line 41 of file md5.cpp.

#define S14   22

Definition at line 42 of file md5.cpp.

#define S21   5

Definition at line 43 of file md5.cpp.

#define S22   9

Definition at line 44 of file md5.cpp.

#define S23   14

Definition at line 45 of file md5.cpp.

#define S24   20

Definition at line 46 of file md5.cpp.

#define S31   4

Definition at line 47 of file md5.cpp.

#define S32   11

Definition at line 48 of file md5.cpp.

#define S33   16

Definition at line 49 of file md5.cpp.

#define S34   23

Definition at line 50 of file md5.cpp.

#define S41   6

Definition at line 51 of file md5.cpp.

#define S42   10

Definition at line 52 of file md5.cpp.

#define S43   15

Definition at line 53 of file md5.cpp.

#define S44   21

Definition at line 54 of file md5.cpp.


Variable Documentation

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.cpp.



appl
Author(s): petercai
autogenerated on Tue Jan 7 2014 11:02:30