X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=libeap%2Fsrc%2Fcrypto%2Fcrypto_none.c;fp=libeap%2Fsrc%2Fcrypto%2Fcrypto_none.c;h=011f3f35a05510a248177fcfecc92677483fd1c6;hb=88e34eecb5769da6526361b35df00fdbe823eac5;hp=0000000000000000000000000000000000000000;hpb=2394142e4bf89e0a9e2a0091ac16bd6442e3d4c7;p=mech_eap.git diff --git a/libeap/src/crypto/crypto_none.c b/libeap/src/crypto/crypto_none.c new file mode 100644 index 0000000..011f3f3 --- /dev/null +++ b/libeap/src/crypto/crypto_none.c @@ -0,0 +1,23 @@ +/* + * WPA Supplicant / Empty template functions for crypto wrapper + * Copyright (c) 2005, Jouni Malinen + * + * This software may be distributed under the terms of the BSD license. + * See README for more details. + */ + +#include "includes.h" + +#include "common.h" +#include "crypto.h" + + +int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) +{ + return 0; +} + + +void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) +{ +}