Select one of the symbols to view example projects that use it.
 
Outline
#define COMEBACK_TOKEN_H
check_comeback_token(const u8 *, u16 *, const u8 *, const u8 *, size_t);
auth_build_token_req(struct os_time *, u8 *, u16, u16 *, size_t, int, const u8 *, int);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/ap/comeback_token.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * hostapd / Comeback token mechanism for SAE * Copyright (c) 2002-2017, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef COMEBACK_TOKEN_H #define COMEBACK_TOKEN_H int check_comeback_token(const u8 *comeback_key, u16 *comeback_pending_idx, const u8 *addr, const u8 *token, size_t token_len); struct wpabuf * auth_build_token_req(struct os_reltime *last_comeback_key_update, u8 *comeback_key, u16 comeback_idx, u16 *comeback_pending_idx, size_t idx_len, int group, const u8 *addr, int h2e); /* ... */ #endif /* COMEBACK_TOKEN_H */
Details