#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "common.h"
#include "eap_i.h"
#include "wpa_supplicant.h"
#include "config_ssid.h"
#include "ms_funcs.h"
#include "crypto.h"
Include dependency graph for eap_leap.c:
Go to the source code of this file.
Defines | |
#define | LEAP_VERSION 1 |
#define | LEAP_CHALLENGE_LEN 8 |
#define | LEAP_RESPONSE_LEN 24 |
#define | LEAP_KEY_LEN 16 |
Variables | |
const struct eap_method | eap_method_leap |
Alternatively, this software may be distributed under the terms of BSD license.
See README and COPYING for more details.
Definition in file eap_leap.c.
|
Initial value:
{
.method = EAP_TYPE_LEAP,
.name = "LEAP",
.init = eap_leap_init,
.deinit = eap_leap_deinit,
.process = eap_leap_process,
.isKeyAvailable = eap_leap_isKeyAvailable,
.getKey = eap_leap_getKey,
}
Definition at line 381 of file eap_leap.c. |