Go to the source code of this file.
Functions | |
void | des_encrypt (const u8 *clear, const u8 *key, u8 *cypher) |
int | md4_vector (size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) |
void des_encrypt | ( | const u8 * | clear, |
const u8 * | key, | ||
u8 * | cypher | ||
) |
des_encrypt - Encrypt one block with DES : 8 octets (in) : 7 octets (in) (no parity bits included) : 8 octets (out)
Definition at line 27 of file crypto_none.c.
int md4_vector | ( | size_t | num_elem, |
const u8 * | addr[], | ||
const size_t * | len, | ||
u8 * | mac | ||
) |
md4_vector - MD4 hash for data vector : Number of elements in the data vector : Pointers to the data areas : Lengths of the data blocks : Buffer for the hash Returns: 0 on success, -1 on failure
Definition at line 21 of file crypto_none.c.