00001 /* 00002 * WPA Supplicant / Empty template functions for crypto wrapper 00003 * Copyright (c) 2005, Jouni Malinen <j@w1.fi> 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License version 2 as 00007 * published by the Free Software Foundation. 00008 * 00009 * Alternatively, this software may be distributed under the terms of BSD 00010 * license. 00011 * 00012 * See README and COPYING for more details. 00013 */ 00014 00015 #include "includes.h" 00016 00017 #include "common.h" 00018 #include "crypto.h" 00019 00020 00021 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 00022 { 00023 return 0; 00024 } 00025 00026 00027 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) 00028 { 00029 }