crypto_none.c revision 225736
149267Snewton/*
249267Snewton * WPA Supplicant / Empty template functions for crypto wrapper
349267Snewton * Copyright (c) 2005, Jouni Malinen <j@w1.fi>
449267Snewton *
549267Snewton * This program is free software; you can redistribute it and/or modify
649267Snewton * it under the terms of the GNU General Public License version 2 as
749267Snewton * published by the Free Software Foundation.
849267Snewton *
949267Snewton * Alternatively, this software may be distributed under the terms of BSD
1049267Snewton * license.
1149267Snewton *
1249267Snewton * See README and COPYING for more details.
1349267Snewton */
1449267Snewton
1549267Snewton#include "includes.h"
1649267Snewton
1749267Snewton#include "common.h"
1849267Snewton#include "crypto.h"
1949267Snewton
2049267Snewton
2149267Snewtonint md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
2249267Snewton{
2349267Snewton	return 0;
2449267Snewton}
2549267Snewton
2649267Snewton
2749267Snewtonvoid des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
2849267Snewton{
2949267Snewton}
3050477Speter