|
Apache HTTPD
|
Go to the source code of this file.
Macros | |
| #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 | DO_XLATE 0 |
| #define | SKIP_XLATE 1 |
| #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) |
Functions | |
| static void | MD5Transform (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) | |
| static apr_status_t | md5_update_buffer (apr_md5_ctx_t *context, const void *vinput, apr_size_t inputLen, int xlate_buffer) |
| static void | to64 (char *s, unsigned long v, int n) |
Variables | |
| static const unsigned char | PADDING [64] |
| static const char *const | apr1_id = "$apr1$" |
| 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 |
|
static |