blob: 011f3f35a05510a248177fcfecc92677483fd1c6 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Empty template functions for crypto wrapper
3 * Copyright (c) 2005, Jouni Malinen <j@w1.fi>
4 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "includes.h"
10
11#include "common.h"
12#include "crypto.h"
13
14
15int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
16{
17 return 0;
18}
19
20
21void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
22{
23}