|
Apache HTTPD
|
Go to the source code of this file.
Macros | |
| #define | S11 3 |
| #define | S12 7 |
| #define | S13 11 |
| #define | S14 19 |
| #define | S21 3 |
| #define | S22 5 |
| #define | S23 9 |
| #define | S24 13 |
| #define | S31 3 |
| #define | S32 9 |
| #define | S33 11 |
| #define | S34 15 |
| #define | F(x, y, z) (((x) & (y)) | ((~x) & (z))) |
| #define | G(x, y, z) (((x) & (y)) | ((x) & (z)) | ((y) & (z))) |
| #define | H(x, y, z) ((x) ^ (y) ^ (z)) |
| #define | ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) |
| #define | FF(a, b, c, d, x, s) |
| #define | GG(a, b, c, d, x, s) |
| #define | HH(a, b, c, d, x, s) |
Functions | |
| static void | MD4Transform (apr_uint32_t state[4], const unsigned char block[64]) |
| static void | Encode (unsigned char *output, const apr_uint32_t *input, unsigned int len) |
| static void | Decode (apr_uint32_t *output, const unsigned char *input, unsigned int len) |
| APU_DECLARE (apr_status_t) | |
Variables | |
| static unsigned char | PADDING [64] |
| APU_DECLARE | ( | int | ) |
Most DBM libraries take a POSIX mode for creating files. Don't trust the mode_t type, some platforms may not support it, int is safe.
< Shared lock. More than one process or thread can hold a shared lock at any given time. Essentially, this is a "read lock", preventing writers from establishing an exclusive lock.
|
static |