#include "md5.h"
#include <stdint.h>
Go to the source code of this file.
|
#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) |
#define | G(x, y, z) |
#define | H(x, y, z) |
#define | I(x, y, z) |
#define | ROTATE_LEFT(x, 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) |
Value:(((x) & (y)) | ((~x) & (
z)))
void z(char *, char *, int, int, int, int)
Definition at line 62 of file md5c.c.
◆ FF
#define FF |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
F ((
b), (c), (
d)) + (x) + (uint32_t)(ac); \
}
#define ROTATE_LEFT(x, n)
Definition at line 73 of file md5c.c.
Value:(((x) & (
z)) | ((y) & (
~z)))
Definition at line 63 of file md5c.c.
◆ GG
#define GG |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
G ((
b), (c), (
d)) + (x) + (uint32_t)(ac); \
}
Definition at line 78 of file md5c.c.
Value:
Definition at line 64 of file md5c.c.
◆ HH
#define HH |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
H ((
b), (c), (
d)) + (x) + (uint32_t)(ac); \
}
Definition at line 83 of file md5c.c.
Value:
Definition at line 65 of file md5c.c.
◆ II
#define II |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
I ((
b), (c), (
d)) + (x) + (uint32_t)(ac); \
}
Definition at line 88 of file md5c.c.
◆ ROTATE_LEFT
#define ROTATE_LEFT |
( |
| x, |
|
|
| n ) |
Value:(((x) << (n)) | ((x) >> (32-(n))))
Definition at line 68 of file md5c.c.
◆ S11
◆ S12
◆ S13
◆ S14
◆ S21
◆ S22
◆ S23
◆ S24
◆ S31
◆ S32
◆ S33
◆ S34
◆ S41
◆ S42
◆ S43
◆ S44
◆ MD5Final()
void MD5Final |
( |
unsigned char | digest[16], |
|
|
MD5_CTX * | context ) |
◆ MD5Init()
◆ MD5Update()
void MD5Update |
( |
MD5_CTX * | context, |
|
|
unsigned char * | input, |
|
|
unsigned int | inputLen ) |