Deleted Added
full compact
eap_psk_common.c (189261) eap_psk_common.c (214734)
1/*
2 * EAP server/peer: EAP-PSK shared routines
3 * Copyright (c) 2004-2006, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
11 *
12 * See README and COPYING for more details.
13 */
14
15#include "includes.h"
16
17#include "common.h"
1/*
2 * EAP server/peer: EAP-PSK shared routines
3 * Copyright (c) 2004-2006, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
11 *
12 * See README and COPYING for more details.
13 */
14
15#include "includes.h"
16
17#include "common.h"
18#include "aes_wrap.h"
18#include "crypto/aes_wrap.h"
19#include "eap_defs.h"
20#include "eap_psk_common.h"
21
22#define aes_block_size 16
23
24
25int eap_psk_key_setup(const u8 *psk, u8 *ak, u8 *kdk)
26{

--- 48 unchanged lines hidden ---
19#include "eap_defs.h"
20#include "eap_psk_common.h"
21
22#define aes_block_size 16
23
24
25int eap_psk_key_setup(const u8 *psk, u8 *ak, u8 *kdk)
26{

--- 48 unchanged lines hidden ---