1189251Ssam/*
2189251Ssam * WPA Supplicant / Empty template functions for crypto wrapper
3189251Ssam * Copyright (c) 2005, Jouni Malinen <j@w1.fi>
4189251Ssam *
5252726Srpaulo * This software may be distributed under the terms of the BSD license.
6252726Srpaulo * See README for more details.
7189251Ssam */
8189251Ssam
9189251Ssam#include "includes.h"
10189251Ssam
11189251Ssam#include "common.h"
12189251Ssam#include "crypto.h"
13189251Ssam
14189251Ssam
15214734Srpauloint md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
16189251Ssam{
17214734Srpaulo	return 0;
18189251Ssam}
19189251Ssam
20189251Ssam
21189251Ssamvoid des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
22189251Ssam{
23189251Ssam}
24