#include <dcl/Config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <dcl/Object.h>
#include <dcl/MD5.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) |
|
typedef unsigned short int | UINT2 |
typedef unsigned long int | UINT4 |
typedef unsigned char * | POINTER |
Value:(((x) & (y)) | ((~x) & (z)))
Definition at line 173 of file MD5.cpp.
◆ FF
#define FF |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
F ((b), (c), (d)) + (x) + (
UINT4)(ac); \
(a) += (b); \
}
#define ROTATE_LEFT(x, n)
Definition at line 183 of file MD5.cpp.
183#define FF(a, b, c, d, x, s, ac) { \
184 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
185 (a) = ROTATE_LEFT ((a), (s)); \
186 (a) += (b); \
187 }
Value:(((x) & (z)) | ((y) & (~z)))
Definition at line 174 of file MD5.cpp.
◆ GG
#define GG |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
G ((b), (c), (d)) + (x) + (
UINT4)(ac); \
(a) += (b); \
}
Definition at line 188 of file MD5.cpp.
188#define GG(a, b, c, d, x, s, ac) { \
189 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
190 (a) = ROTATE_LEFT ((a), (s)); \
191 (a) += (b); \
192 }
◆ HH
#define HH |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
H ((b), (c), (d)) + (x) + (
UINT4)(ac); \
(a) += (b); \
}
Definition at line 193 of file MD5.cpp.
193#define HH(a, b, c, d, x, s, ac) { \
194 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
195 (a) = ROTATE_LEFT ((a), (s)); \
196 (a) += (b); \
197 }
◆ II
#define II |
( |
| a, |
|
|
| b, |
|
|
| c, |
|
|
| d, |
|
|
| x, |
|
|
| s, |
|
|
| ac ) |
Value: { \
(a) +=
I ((b), (c), (d)) + (x) + (
UINT4)(ac); \
(a) += (b); \
}
Definition at line 198 of file MD5.cpp.
198#define II(a, b, c, d, x, s, ac) { \
199 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
200 (a) = ROTATE_LEFT ((a), (s)); \
201 (a) += (b); \
202 }
◆ ROTATE_LEFT
#define ROTATE_LEFT |
( |
| x, |
|
|
| n ) |
Value:(((x) << (
n)) | ((x) >> (32-(
n))))
void CharsetConvertException *size_t n
Definition at line 179 of file MD5.cpp.
◆ S11
◆ S12
◆ S13
◆ S14
◆ S21
◆ S22
◆ S23
◆ S24
◆ S31
◆ S32
◆ S33
◆ S34
◆ S41
◆ S42
◆ S43
◆ S44
◆ POINTER
◆ UINT2
typedef unsigned short int UINT2 |
◆ UINT4
typedef unsigned long int UINT4 |