|
Namespaces |
namespace | std |
Defines |
#define | UNALIGNED_P(p) (((wxUint32) p) % sizeof(wxUint32) != 0) |
#define | FF(b, c, d) (d ^ (b & (c ^ d))) |
| First fonction of the MD5 algorithm.
|
#define | FG(b, c, d) FF (d, b, c) |
| Second fonction of the MD5 algorithm.
|
#define | FH(b, c, d) (b ^ c ^ d) |
| Third fonction of the MD5 algorithm.
|
#define | FI(b, c, d) (c ^ (b | ~d)) |
| Fourth fonction of the MD5 algorithm.
|
#define | rol(x, n) ( ((x) << (n)) | ((x) >> (32-(n))) ) |
| Rotate a 32 bit integer by n bytes.
|
#define | OP(a, b, c, d, s, T) |
#define | OP(f, a, b, c, d, k, s, T) |