sipxtacklib  Version 3.3
Classes | Macros | Typedefs | Functions
NetMd5Codec.cpp File Reference
#include <assert.h>
#include <stdio.h>
#include <net/NetMd5Codec.h>
#include <os/OsIntTypes.h>
#include <stdlib.h>
#include <string.h>
Include dependency graph for NetMd5Codec.cpp:

Classes

struct  MD5_CTX_PT
 

Macros

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

Typedefs

typedef uint16_t UINT2
 
typedef uint32_t UINT4
 
typedef unsigned char * POINTER
 

Functions

void MD5Final (unsigned char *digest, MD5_CTX_PT *context)
 

Macro Definition Documentation

#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,
 
)    (((x) & (y)) | ((~x) & (z)))
#define G (   x,
  y,
 
)    (((x) & (z)) | ((y) & (~z)))
#define H (   x,
  y,
 
)    ((x) ^ (y) ^ (z))
#define I (   x,
  y,
 
)    ((y) ^ ((x) | (~z)))
#define ROTATE_LEFT (   x,
 
)    (((x) << (n)) | ((x) >> (32-(n))))
#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); \
}
#define F(x, y, z)
Definition: NetMd5Codec.cpp:147
#define ROTATE_LEFT(x, n)
Definition: NetMd5Codec.cpp:154
uint32_t UINT4
Definition: NetMd5Codec.cpp:26
#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); \
}
#define ROTATE_LEFT(x, n)
Definition: NetMd5Codec.cpp:154
uint32_t UINT4
Definition: NetMd5Codec.cpp:26
#define G(x, y, z)
Definition: NetMd5Codec.cpp:148
#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); \
}
#define H(x, y, z)
Definition: NetMd5Codec.cpp:149
#define ROTATE_LEFT(x, n)
Definition: NetMd5Codec.cpp:154
uint32_t UINT4
Definition: NetMd5Codec.cpp:26
#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); \
}
#define I(x, y, z)
Definition: NetMd5Codec.cpp:150
#define ROTATE_LEFT(x, n)
Definition: NetMd5Codec.cpp:154
uint32_t UINT4
Definition: NetMd5Codec.cpp:26

Typedef Documentation

typedef uint16_t UINT2
typedef uint32_t UINT4
typedef unsigned char* POINTER

Function Documentation

void MD5Final ( unsigned char *  digest,
MD5_CTX_PT context 
)

sipXtackLib home page