#include "includes.h"
#include "common.h"
#include "crypto.h"
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) |
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.
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.