diff options
author | Jouni Malinen <j@w1.fi> | 2008-02-27 17:34:43 -0800 |
---|---|---|
committer | Jouni Malinen <jm@jm.kir.nu> | 2008-02-27 17:34:43 -0800 |
commit | 6fc6879bd55a394f807cbbe927df736c190cb8ab (patch) | |
tree | cdf50da0c58f21510a808d53502a060d911ff243 /src/crypto/crypto_none.c | |
download | external_wpa_supplicant_8_ti-6fc6879bd55a394f807cbbe927df736c190cb8ab.zip external_wpa_supplicant_8_ti-6fc6879bd55a394f807cbbe927df736c190cb8ab.tar.gz external_wpa_supplicant_8_ti-6fc6879bd55a394f807cbbe927df736c190cb8ab.tar.bz2 |
Re-initialize hostapd/wpa_supplicant git repository based on 0.6.3 release
Diffstat (limited to 'src/crypto/crypto_none.c')
-rw-r--r-- | src/crypto/crypto_none.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/crypto/crypto_none.c b/src/crypto/crypto_none.c new file mode 100644 index 0000000..f18c2a8 --- /dev/null +++ b/src/crypto/crypto_none.c @@ -0,0 +1,28 @@ +/* + * WPA Supplicant / Empty template functions for crypto wrapper + * Copyright (c) 2005, Jouni Malinen <j@w1.fi> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * Alternatively, this software may be distributed under the terms of BSD + * license. + * + * See README and COPYING for more details. + */ + +#include "includes.h" + +#include "common.h" +#include "crypto.h" + + +void md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) +{ +} + + +void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) +{ +} |