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