ecc_acts.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef _ECC_ACTS_H
  2. #define _ECC_ACTS_H
  3. #define BT_P192_PK_SIZE 48
  4. #define BT_P192_DHK_SIZE 24
  5. #define BT_P256_PK_SIZE 64
  6. #define BT_P256_DHK_SIZE 32
  7. enum {
  8. PENDING_P192_PUB_KEY,
  9. PENDING_P192_DHKEY,
  10. PENDING_P256_PUB_KEY,
  11. PENDING_P256_DHKEY,
  12. /* Total number of flags - must be at the end of the enum */
  13. NUM_ECC_FLAGS,
  14. };
  15. struct bt_gen_p192_pk_rsp {
  16. uint8_t public_key[48];
  17. uint8_t private_key[24];
  18. } __packed;
  19. struct bt_gen_p192_dhkey_req {
  20. uint8_t id;
  21. uint8_t pad[3];
  22. uint8_t remote_pk[48];
  23. uint8_t private_key[24];
  24. } __packed;
  25. struct bt_gen_p192_dhkey_rsp {
  26. uint8_t id;
  27. uint8_t pad[3];
  28. uint8_t dhkey[24];
  29. } __packed;
  30. struct bt_gen_p256_pk_rsp {
  31. uint8_t public_key[64];
  32. uint8_t private_key[32];
  33. } __packed;
  34. struct bt_gen_p256_dhkey_req {
  35. uint8_t id;
  36. uint8_t pad[3];
  37. uint8_t remote_pk[64];
  38. uint8_t private_key[32];
  39. } __packed;
  40. struct bt_gen_p256_dhkey_rsp {
  41. uint8_t id;
  42. uint8_t pad[3];
  43. uint8_t dhkey[32];
  44. } __packed;
  45. int ecc_init(void);
  46. void acts_work_submit(struct k_work *work);
  47. int ecc_gen_p192_pk(uint8_t *public_key, uint8_t *private_key);
  48. int ecc_valid_p192_pk(uint8_t *public_key);
  49. int ecc_gen_p192_dhkey(uint8_t *public_key, uint8_t *private_key, uint8_t *dhkey);
  50. int ecc_gen_p256_pk(uint8_t *public_key, uint8_t *private_key);
  51. int ecc_valid_p256_pk(uint8_t *public_key);
  52. int ecc_gen_p256_dhkey(uint8_t *public_key, uint8_t *private_key, uint8_t *dhkey);
  53. #endif