#include <wx/wxprec.h>
#include <wx/wx.h>
#include "md5.hpp"
#include "compat.hpp"
Include dependency graph for md5.cpp:
Go to the source code of this file.
Defines | |
#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 | OP(f, a, b, c, d, k, s, T) |
#define | OP(a, b, c, d, s, T) |
#define | rol(x, n) ( ((x) << (n)) | ((x) >> (32-(n))) ) |
Rotate a 32 bit integer by n bytes. | |
#define | UNALIGNED_P(p) (((wxUint32) p) % sizeof(wxUint32) != 0) |
Definition in file md5.cpp.
|
First fonction of the MD5 algorithm.
|
|
Second fonction of the MD5 algorithm.
Definition at line 193 of file md5.cpp. Referenced by MD5::process_block(). |
|
Third fonction of the MD5 algorithm.
Definition at line 194 of file md5.cpp. Referenced by MD5::process_block(). |
|
Fourth fonction of the MD5 algorithm.
Definition at line 195 of file md5.cpp. Referenced by MD5::process_block(). |
|
Value: |
|
Value: |
|
Rotate a 32 bit integer by n bytes.
|