crypto_none.c 451 B

1234567891011121314151617181920212223
  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. #include "includes.h"
  9. #include "common.h"
  10. #include "crypto.h"
  11. int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
  12. {
  13. return 0;
  14. }
  15. void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher)
  16. {
  17. }