Eneboo - Documentación para desarrolladores
|
'defines' | |
#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 | ROT_LEFT(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) |
Funciones | |
bool | pg_md5_hash (const void *buff, size_t len, char *hexsum) |
bool | pg_md5_encrypt (const char *passwd, const char *salt, size_t salt_len, char *buf) |
#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 ROT_LEFT | ( | x, | |
n | |||
) | (((x) << (n)) | ((x) >> (32 - (n)))) |