#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 "md5.h"
#include "aes_wrap.h"
#include "eap_psk_common.h"
Include dependency graph for eap_psk.c:
Go to the source code of this file.
Variables | |
const struct eap_method | eap_method_psk |
Alternatively, this software may be distributed under the terms of BSD license.
See README and COPYING for more details.
Note: EAP-PSK is an EAP authentication method and as such, completely different from WPA-PSK. This file is not needed for WPA-PSK functionality.
Definition in file eap_psk.c.
|
Initial value:
{
.method = EAP_TYPE_PSK,
.name = "PSK",
.init = eap_psk_init,
.deinit = eap_psk_deinit,
.process = eap_psk_process,
.isKeyAvailable = eap_psk_isKeyAvailable,
.getKey = eap_psk_getKey,
}
|