2012-12-30 20:48:19 +01:00
|
|
|
/*
|
|
|
|
* Simultaneous authentication of equals
|
2013-01-01 13:00:40 +01:00
|
|
|
* Copyright (c) 2012-2013, Jouni Malinen <j@w1.fi>
|
2012-12-30 20:48:19 +01:00
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SAE_H
|
|
|
|
#define SAE_H
|
|
|
|
|
2013-01-01 10:52:49 +01:00
|
|
|
#define SAE_KCK_LEN 32
|
|
|
|
#define SAE_PMK_LEN 32
|
|
|
|
#define SAE_PMKID_LEN 16
|
|
|
|
#define SAE_KEYSEED_KEY_LEN 32
|
2013-01-05 20:22:00 +01:00
|
|
|
#define SAE_MAX_PRIME_LEN 512
|
2013-01-06 17:12:58 +01:00
|
|
|
#define SAE_MAX_ECC_PRIME_LEN 66
|
2013-01-01 10:49:01 +01:00
|
|
|
#define SAE_COMMIT_MAX_LEN (2 + 3 * SAE_MAX_PRIME_LEN)
|
|
|
|
#define SAE_CONFIRM_MAX_LEN (2 + SAE_MAX_PRIME_LEN)
|
2012-12-30 21:06:11 +01:00
|
|
|
|
2015-06-23 21:30:15 +02:00
|
|
|
/* Special value returned by sae_parse_commit() */
|
|
|
|
#define SAE_SILENTLY_DISCARD 65535
|
|
|
|
|
2013-01-06 18:26:27 +01:00
|
|
|
struct sae_temporary_data {
|
2013-01-01 10:52:49 +01:00
|
|
|
u8 kck[SAE_KCK_LEN];
|
2013-01-06 15:57:53 +01:00
|
|
|
struct crypto_bignum *own_commit_scalar;
|
2013-01-06 17:12:58 +01:00
|
|
|
struct crypto_bignum *own_commit_element_ffc;
|
|
|
|
struct crypto_ec_point *own_commit_element_ecc;
|
|
|
|
struct crypto_bignum *peer_commit_element_ffc;
|
|
|
|
struct crypto_ec_point *peer_commit_element_ecc;
|
2013-01-06 15:10:48 +01:00
|
|
|
struct crypto_ec_point *pwe_ecc;
|
|
|
|
struct crypto_bignum *pwe_ffc;
|
2013-01-06 14:32:38 +01:00
|
|
|
struct crypto_bignum *sae_rand;
|
2013-01-01 10:29:53 +01:00
|
|
|
struct crypto_ec *ec;
|
|
|
|
int prime_len;
|
2013-01-05 20:22:00 +01:00
|
|
|
const struct dh_group *dh;
|
2013-01-05 20:12:29 +01:00
|
|
|
const struct crypto_bignum *prime;
|
|
|
|
const struct crypto_bignum *order;
|
2013-01-05 20:22:00 +01:00
|
|
|
struct crypto_bignum *prime_buf;
|
|
|
|
struct crypto_bignum *order_buf;
|
2014-11-25 03:04:40 +01:00
|
|
|
struct wpabuf *anti_clogging_token;
|
2012-12-30 20:48:19 +01:00
|
|
|
};
|
|
|
|
|
2013-01-06 18:26:27 +01:00
|
|
|
struct sae_data {
|
|
|
|
enum { SAE_NOTHING, SAE_COMMITTED, SAE_CONFIRMED, SAE_ACCEPTED } state;
|
|
|
|
u16 send_confirm;
|
|
|
|
u8 pmk[SAE_PMK_LEN];
|
2015-12-27 03:20:51 +01:00
|
|
|
u8 pmkid[SAE_PMKID_LEN];
|
2013-01-06 18:26:27 +01:00
|
|
|
struct crypto_bignum *peer_commit_scalar;
|
|
|
|
int group;
|
2015-01-07 07:10:57 +01:00
|
|
|
int sync;
|
2013-01-06 18:26:27 +01:00
|
|
|
struct sae_temporary_data *tmp;
|
|
|
|
};
|
|
|
|
|
2013-01-01 10:29:53 +01:00
|
|
|
int sae_set_group(struct sae_data *sae, int group);
|
2013-01-06 18:06:59 +01:00
|
|
|
void sae_clear_temp_data(struct sae_data *sae);
|
2013-01-01 10:29:53 +01:00
|
|
|
void sae_clear_data(struct sae_data *sae);
|
|
|
|
|
2012-12-30 21:06:11 +01:00
|
|
|
int sae_prepare_commit(const u8 *addr1, const u8 *addr2,
|
|
|
|
const u8 *password, size_t password_len,
|
|
|
|
struct sae_data *sae);
|
2012-12-30 21:16:18 +01:00
|
|
|
int sae_process_commit(struct sae_data *sae);
|
2012-12-31 15:58:36 +01:00
|
|
|
void sae_write_commit(struct sae_data *sae, struct wpabuf *buf,
|
|
|
|
const struct wpabuf *token);
|
|
|
|
u16 sae_parse_commit(struct sae_data *sae, const u8 *data, size_t len,
|
2013-01-01 15:23:47 +01:00
|
|
|
const u8 **token, size_t *token_len, int *allowed_groups);
|
2012-12-30 21:28:57 +01:00
|
|
|
void sae_write_confirm(struct sae_data *sae, struct wpabuf *buf);
|
2012-12-30 21:31:19 +01:00
|
|
|
int sae_check_confirm(struct sae_data *sae, const u8 *data, size_t len);
|
2014-11-25 03:04:41 +01:00
|
|
|
u16 sae_group_allowed(struct sae_data *sae, int *allowed_groups, u16 group);
|
2012-12-30 21:06:11 +01:00
|
|
|
|
2012-12-30 20:48:19 +01:00
|
|
|
#endif /* SAE_H */
|