blob: 547919418af998f7d86f3f608951954342c2ec0e [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Empty template functions for crypto wrapper
3 * Copyright (c) 2005, Jouni Malinen <j@w1.fi>
4 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "includes.h"
10
11#include "common.h"
12#include "crypto.h"
13
14
15int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
16{
17 return 0;
18}
19
20
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070021int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070022{
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070023 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024}