blocxx
|
#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 |
Taken from RFC 1321. | |
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 | |
BLOCXX_NAMESPACE::BLOCXX_DEFINE_EXCEPTION_WITH_ID (MD5) | |
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 | |
usr src packages BUILD blocxx src blocxx MD5 cpp const int | BLOCXX_NAMESPACE::MD5HASHHEXLEN = 32 |
static unsigned char | BLOCXX_NAMESPACE::PADDING [64] |
#define FF | ( | a, | |
b, | |||
c, | |||
d, | |||
x, | |||
s, | |||
ac | |||
) |
{ \ (a) += F ((b), (c), (d)) + (x) + static_cast<UInt32>(ac); \ (a) = ROTATE_LEFT ((a), (s)); \ (a) += (b); \ }
Definition at line 220 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define GG | ( | a, | |
b, | |||
c, | |||
d, | |||
x, | |||
s, | |||
ac | |||
) |
{ \ (a) += G ((b), (c), (d)) + (x) + static_cast<UInt32>(ac); \ (a) = ROTATE_LEFT ((a), (s)); \ (a) += (b); \ }
Definition at line 225 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define HH | ( | a, | |
b, | |||
c, | |||
d, | |||
x, | |||
s, | |||
ac | |||
) |
{ \ (a) += H ((b), (c), (d)) + (x) + static_cast<UInt32>(ac); \ (a) = ROTATE_LEFT ((a), (s)); \ (a) += (b); \ }
Definition at line 230 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define II | ( | a, | |
b, | |||
c, | |||
d, | |||
x, | |||
s, | |||
ac | |||
) |
{ \ (a) += I ((b), (c), (d)) + (x) + static_cast<UInt32>(ac); \ (a) = ROTATE_LEFT ((a), (s)); \ (a) += (b); \ }
Definition at line 235 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define ROTATE_LEFT | ( | x, | |
n | |||
) | (((x) << (n)) | ((x) >> (32-(n)))) |
#define S11 7 |
Definition at line 182 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S12 12 |
Definition at line 183 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S13 17 |
Definition at line 184 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S14 22 |
Definition at line 185 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S21 5 |
Definition at line 186 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S22 9 |
Definition at line 187 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S23 14 |
Definition at line 188 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S24 20 |
Definition at line 189 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S31 4 |
Definition at line 190 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S32 11 |
Definition at line 191 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S33 16 |
Definition at line 192 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S34 23 |
Definition at line 193 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S41 6 |
Definition at line 194 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S42 10 |
Definition at line 195 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S43 15 |
Definition at line 196 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().
#define S44 21 |
Definition at line 197 of file MD5.cpp.
Referenced by BLOCXX_NAMESPACE::MD5Transform().