crypto.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /** @file
  2. * @brief Bluetooth subsystem crypto APIs.
  3. */
  4. /*
  5. * Copyright (c) 2017-2020 Nordic Semiconductor ASA
  6. * Copyright (c) 2015-2017 Intel Corporation
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_CRYPTO_H_
  11. #define ZEPHYR_INCLUDE_BLUETOOTH_CRYPTO_H_
  12. /**
  13. * @brief Cryptography
  14. * @defgroup bt_crypto Cryptography
  15. * @ingroup bluetooth
  16. * @{
  17. */
  18. #include <stdbool.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /** @brief Generate random data.
  23. *
  24. * A random number generation helper which utilizes the Bluetooth
  25. * controller's own RNG.
  26. *
  27. * @param buf Buffer to insert the random data
  28. * @param len Length of random data to generate
  29. *
  30. * @return Zero on success or error code otherwise, positive in case
  31. * of protocol error or negative (POSIX) in case of stack internal error
  32. */
  33. int bt_rand(void *buf, size_t len);
  34. /** @brief AES encrypt little-endian data.
  35. *
  36. * An AES encrypt helper is used to request the Bluetooth controller's own
  37. * hardware to encrypt the plaintext using the key and returns the encrypted
  38. * data.
  39. *
  40. * @param key 128 bit LS byte first key for the encryption of the plaintext
  41. * @param plaintext 128 bit LS byte first plaintext data block to be encrypted
  42. * @param enc_data 128 bit LS byte first encrypted data block
  43. *
  44. * @return Zero on success or error code otherwise.
  45. */
  46. int bt_encrypt_le(const uint8_t key[16], const uint8_t plaintext[16],
  47. uint8_t enc_data[16]);
  48. /** @brief AES encrypt big-endian data.
  49. *
  50. * An AES encrypt helper is used to request the Bluetooth controller's own
  51. * hardware to encrypt the plaintext using the key and returns the encrypted
  52. * data.
  53. *
  54. * @param key 128 bit MS byte first key for the encryption of the plaintext
  55. * @param plaintext 128 bit MS byte first plaintext data block to be encrypted
  56. * @param enc_data 128 bit MS byte first encrypted data block
  57. *
  58. * @return Zero on success or error code otherwise.
  59. */
  60. int bt_encrypt_be(const uint8_t key[16], const uint8_t plaintext[16],
  61. uint8_t enc_data[16]);
  62. /** @brief Decrypt big-endian data with AES-CCM.
  63. *
  64. * Decrypts and authorizes @c enc_data with AES-CCM, as described in
  65. * https://tools.ietf.org/html/rfc3610.
  66. *
  67. * Assumes that the MIC follows directly after the encrypted data.
  68. *
  69. * @param key 128 bit MS byte first key
  70. * @param nonce 13 byte MS byte first nonce
  71. * @param enc_data Encrypted data
  72. * @param len Length of the encrypted data
  73. * @param aad Additional input data
  74. * @param aad_len Additional input data length
  75. * @param plaintext Plaintext buffer to place result in
  76. * @param mic_size Size of the trailing MIC (in bytes)
  77. *
  78. * @retval 0 Successfully decrypted the data.
  79. * @retval -EINVAL Invalid parameters.
  80. * @retval -EBADMSG Authentication failed.
  81. */
  82. int bt_ccm_decrypt(const uint8_t key[16], uint8_t nonce[13], const uint8_t *enc_data,
  83. size_t len, const uint8_t *aad, size_t aad_len,
  84. uint8_t *plaintext, size_t mic_size);
  85. /** @brief Encrypt big-endian data with AES-CCM.
  86. *
  87. * Encrypts and generates a MIC from @c plaintext with AES-CCM, as described in
  88. * https://tools.ietf.org/html/rfc3610.
  89. *
  90. * Places the MIC directly after the encrypted data.
  91. *
  92. * @param key 128 bit MS byte first key
  93. * @param nonce 13 byte MS byte first nonce
  94. * @param plaintext Plaintext buffer to encrypt
  95. * @param len Length of the encrypted data
  96. * @param aad Additional input data
  97. * @param aad_len Additional input data length
  98. * @param enc_data Buffer to place encrypted data in
  99. * @param mic_size Size of the trailing MIC (in bytes)
  100. *
  101. * @retval 0 Successfully encrypted the data.
  102. * @retval -EINVAL Invalid parameters.
  103. */
  104. int bt_ccm_encrypt(const uint8_t key[16], uint8_t nonce[13],
  105. const uint8_t *plaintext, size_t len, const uint8_t *aad,
  106. size_t aad_len, uint8_t *enc_data, size_t mic_size);
  107. #ifdef __cplusplus
  108. }
  109. #endif
  110. /**
  111. * @}
  112. */
  113. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_CRYPTO_H_ */