1 /* 2 * WPA Supplicant / Empty template functions for crypto wrapper 3 * Copyright (c) 2005, Jouni Malinen <j@w1.fi> 4 * 5 * This software may be distributed under the terms of the BSD license. 6 * See README for more details. 7 */ 8 9 #include "includes.h" 10 11 #include "common.h" 12 #include "crypto.h" 13 14 15 int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 16 { 17 return 0; 18 } 19 20 21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) 22 { 23 return 0; 24 } 25 26 27 void crypto_unload(void) 28 { 29 } 30