sae.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Simultaneous authentication of equals
  3. * Copyright (c) 2012-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef SAE_H
  9. #define SAE_H
  10. #define SAE_KCK_LEN 32
  11. #define SAE_PMK_LEN 32
  12. #define SAE_PMKID_LEN 16
  13. #define SAE_KEYSEED_KEY_LEN 32
  14. #define SAE_MAX_PRIME_LEN 512
  15. #define SAE_MAX_ECC_PRIME_LEN 66
  16. #define SAE_COMMIT_MAX_LEN (2 + 3 * SAE_MAX_PRIME_LEN)
  17. #define SAE_CONFIRM_MAX_LEN (2 + SAE_MAX_PRIME_LEN)
  18. struct sae_temporary_data {
  19. u8 kck[SAE_KCK_LEN];
  20. struct crypto_bignum *own_commit_scalar;
  21. struct crypto_bignum *own_commit_element_ffc;
  22. struct crypto_ec_point *own_commit_element_ecc;
  23. struct crypto_bignum *peer_commit_element_ffc;
  24. struct crypto_ec_point *peer_commit_element_ecc;
  25. struct crypto_ec_point *pwe_ecc;
  26. struct crypto_bignum *pwe_ffc;
  27. struct crypto_bignum *sae_rand;
  28. struct crypto_ec *ec;
  29. int prime_len;
  30. const struct dh_group *dh;
  31. const struct crypto_bignum *prime;
  32. const struct crypto_bignum *order;
  33. struct crypto_bignum *prime_buf;
  34. struct crypto_bignum *order_buf;
  35. };
  36. struct sae_data {
  37. enum { SAE_NOTHING, SAE_COMMITTED, SAE_CONFIRMED, SAE_ACCEPTED } state;
  38. u16 send_confirm;
  39. u8 pmk[SAE_PMK_LEN];
  40. struct crypto_bignum *peer_commit_scalar;
  41. int group;
  42. struct sae_temporary_data *tmp;
  43. };
  44. int sae_set_group(struct sae_data *sae, int group);
  45. void sae_clear_temp_data(struct sae_data *sae);
  46. void sae_clear_data(struct sae_data *sae);
  47. int sae_prepare_commit(const u8 *addr1, const u8 *addr2,
  48. const u8 *password, size_t password_len,
  49. struct sae_data *sae);
  50. int sae_process_commit(struct sae_data *sae);
  51. void sae_write_commit(struct sae_data *sae, struct wpabuf *buf,
  52. const struct wpabuf *token);
  53. u16 sae_parse_commit(struct sae_data *sae, const u8 *data, size_t len,
  54. const u8 **token, size_t *token_len, int *allowed_groups);
  55. void sae_write_confirm(struct sae_data *sae, struct wpabuf *buf);
  56. int sae_check_confirm(struct sae_data *sae, const u8 *data, size_t len);
  57. #endif /* SAE_H */