mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
handshake: add password identifier/setter
This commit is contained in:
parent
62dad5e792
commit
c1d40e2263
@ -137,6 +137,12 @@ void handshake_state_free(struct handshake_state *s)
|
|||||||
l_free(s->passphrase);
|
l_free(s->passphrase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (s->password_identifier) {
|
||||||
|
explicit_bzero(s->password_identifier,
|
||||||
|
strlen(s->password_identifier));
|
||||||
|
l_free(s->password_identifier);
|
||||||
|
}
|
||||||
|
|
||||||
if (s->ecc_sae_pts) {
|
if (s->ecc_sae_pts) {
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
@ -364,6 +370,12 @@ void handshake_state_set_passphrase(struct handshake_state *s,
|
|||||||
s->passphrase = l_strdup(passphrase);
|
s->passphrase = l_strdup(passphrase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void handshake_state_set_password_identifier(struct handshake_state *s,
|
||||||
|
const char *id)
|
||||||
|
{
|
||||||
|
s->password_identifier = l_strdup(id);
|
||||||
|
}
|
||||||
|
|
||||||
void handshake_state_set_no_rekey(struct handshake_state *s, bool no_rekey)
|
void handshake_state_set_no_rekey(struct handshake_state *s, bool no_rekey)
|
||||||
{
|
{
|
||||||
s->no_rekey = no_rekey;
|
s->no_rekey = no_rekey;
|
||||||
|
@ -143,6 +143,7 @@ struct handshake_state {
|
|||||||
uint8_t ssid[32];
|
uint8_t ssid[32];
|
||||||
size_t ssid_len;
|
size_t ssid_len;
|
||||||
char *passphrase;
|
char *passphrase;
|
||||||
|
char *password_identifier;
|
||||||
uint8_t r0khid[48];
|
uint8_t r0khid[48];
|
||||||
size_t r0khid_len;
|
size_t r0khid_len;
|
||||||
uint8_t r1khid[6];
|
uint8_t r1khid[6];
|
||||||
@ -228,6 +229,8 @@ void handshake_state_set_event_func(struct handshake_state *s,
|
|||||||
void *user_data);
|
void *user_data);
|
||||||
void handshake_state_set_passphrase(struct handshake_state *s,
|
void handshake_state_set_passphrase(struct handshake_state *s,
|
||||||
const char *passphrase);
|
const char *passphrase);
|
||||||
|
void handshake_state_set_password_identifier(struct handshake_state *s,
|
||||||
|
const char *id);
|
||||||
bool handshake_state_add_ecc_sae_pt(struct handshake_state *s,
|
bool handshake_state_add_ecc_sae_pt(struct handshake_state *s,
|
||||||
const struct l_ecc_point *pt);
|
const struct l_ecc_point *pt);
|
||||||
void handshake_state_set_no_rekey(struct handshake_state *s, bool no_rekey);
|
void handshake_state_set_no_rekey(struct handshake_state *s, bool no_rekey);
|
||||||
|
Loading…
Reference in New Issue
Block a user