Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

md5c.c File Reference

#include "md5.h"

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

void MD5Init (context) MD5_CTX *context

Variables

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)))
 

#define FF a,
b,
c,
d,
x,
s,
ac   
 

Value:

{ \
 (a) += F ((b), (c), (d)) + (x) + (uint32_t)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

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

#define GG a,
b,
c,
d,
x,
s,
ac   
 

Value:

{ \
 (a) += G ((b), (c), (d)) + (x) + (uint32_t)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

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

#define HH a,
b,
c,
d,
x,
s,
ac   
 

Value:

{ \
 (a) += H ((b), (c), (d)) + (x) + (uint32_t)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

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

#define II a,
b,
c,
d,
x,
s,
ac   
 

Value:

{ \
 (a) += I ((b), (c), (d)) + (x) + (uint32_t)(ac); \
 (a) = ROTATE_LEFT ((a), (s)); \
 (a) += (b); \
  }

#define ROTATE_LEFT x,
     (((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
 


Function Documentation

void MD5Init context   
 


Variable Documentation

unsigned char block[64]
 

MD5_CTX* context
 

POINTER input
 

unsigned int inputLen
 

unsigned int len
 

int value
 


Generated on Sat Sep 14 10:49:26 2002 for mailfilter by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002