MD5.cpp File Reference
#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.
|
Namespaces |
| namespace | BLOCXX_NAMESPACE |
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) |
Typedefs |
| typedef unsigned char * | BLOCXX_NAMESPACE::POINTER |
Functions |
| static void | BLOCXX_NAMESPACE::MD5Transform (UInt32 *, const unsigned char *) |
| static void | BLOCXX_NAMESPACE::Encode (unsigned char *, UInt32 *, UInt32) |
| static void | BLOCXX_NAMESPACE::Decode (UInt32 *, const unsigned char *, UInt32) |
Variables |
| const int | BLOCXX_NAMESPACE::MD5HASHHEXLEN = 32 |
| static unsigned char | BLOCXX_NAMESPACE::PADDING [64] |
Define Documentation
| #define F |
( |
x, |
|
|
y, |
|
|
z |
|
) |
(((x) & (y)) | ((~x) & (z))) |
| #define FF |
( |
a, |
|
|
b, |
|
|
c, |
|
|
d, |
|
|
x, |
|
|
s, |
|
|
ac |
|
) |
|
| #define G |
( |
x, |
|
|
y, |
|
|
z |
|
) |
(((x) & (z)) | ((y) & (~z))) |
| #define GG |
( |
a, |
|
|
b, |
|
|
c, |
|
|
d, |
|
|
x, |
|
|
s, |
|
|
ac |
|
) |
|
| #define H |
( |
x, |
|
|
y, |
|
|
z |
|
) |
((x) ^ (y) ^ (z)) |
| #define HH |
( |
a, |
|
|
b, |
|
|
c, |
|
|
d, |
|
|
x, |
|
|
s, |
|
|
ac |
|
) |
|
| #define I |
( |
x, |
|
|
y, |
|
|
z |
|
) |
((y) ^ ((x) | (~z))) |
| #define II |
( |
a, |
|
|
b, |
|
|
c, |
|
|
d, |
|
|
x, |
|
|
s, |
|
|
ac |
|
) |
|
| #define ROTATE_LEFT |
( |
x, |
|
|
n |
|
) |
(((x) << (n)) | ((x) >> (32-(n)))) |