#include "blocxx/BLOCXX_config.h"
#include "blocxx/MD5.hpp"
#include "blocxx/String.hpp"
#include "blocxx/ExceptionIds.hpp"
#include <string.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) (((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) |
| |
| #define F |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (((x) & (y)) | ((~x) & (z))) |
◆ FF
| #define FF |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d, |
|
|
|
x, |
|
|
|
s, |
|
|
|
ac |
|
) |
| |
Value: { \
(a) +=
F ((b), (c), (d)) + (x) +
static_cast<UInt32
>(ac); \
(a) += (b); \
}
#define ROTATE_LEFT(x, n)
Definition at line 219 of file MD5.cpp.
| #define G |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (((x) & (z)) | ((y) & (~z))) |
◆ GG
| #define GG |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d, |
|
|
|
x, |
|
|
|
s, |
|
|
|
ac |
|
) |
| |
Value: { \
(a) +=
G ((b), (c), (d)) + (x) +
static_cast<UInt32
>(ac); \
(a) += (b); \
}
Definition at line 224 of file MD5.cpp.
| #define H |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| ((x) ^ (y) ^ (z)) |
◆ HH
| #define HH |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d, |
|
|
|
x, |
|
|
|
s, |
|
|
|
ac |
|
) |
| |
Value: { \
(a) +=
H ((b), (c), (d)) + (x) +
static_cast<UInt32
>(ac); \
(a) += (b); \
}
Definition at line 229 of file MD5.cpp.
| #define I |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| ((y) ^ ((x) | (~z))) |
◆ II
| #define II |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d, |
|
|
|
x, |
|
|
|
s, |
|
|
|
ac |
|
) |
| |
Value: { \
(a) +=
I ((b), (c), (d)) + (x) +
static_cast<UInt32
>(ac); \
(a) += (b); \
}
Definition at line 234 of file MD5.cpp.
◆ ROTATE_LEFT
| #define ROTATE_LEFT |
( |
|
x, |
|
|
|
n |
|
) |
| (((x) << (n)) | ((x) >> (32-(n)))) |
◆ S11
◆ S12
◆ S13
◆ S14
◆ S21
◆ S22
◆ S23
◆ S24
◆ S31
◆ S32
◆ S33
◆ S34
◆ S41
◆ S42
◆ S43
◆ S44