Deleted Added
full compact
eap_tls.c (189261) eap_tls.c (214734)
1/*
2 * EAP peer method: EAP-TLS (RFC 2716)
3 * Copyright (c) 2004-2008, 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 peer method: EAP-TLS (RFC 2716)
3 * Copyright (c) 2004-2008, 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 "crypto/tls.h"
18#include "eap_i.h"
19#include "eap_tls_common.h"
20#include "eap_config.h"
19#include "eap_i.h"
20#include "eap_tls_common.h"
21#include "eap_config.h"
21#include "tls.h"
22
23
24static void eap_tls_deinit(struct eap_sm *sm, void *priv);
25
26
27struct eap_tls_data {
28 struct eap_ssl_data ssl;
29 u8 *key_data;

--- 260 unchanged lines hidden ---
22
23
24static void eap_tls_deinit(struct eap_sm *sm, void *priv);
25
26
27struct eap_tls_data {
28 struct eap_ssl_data ssl;
29 u8 *key_data;

--- 260 unchanged lines hidden ---