esp_ds.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #include <stdbool.h>
  8. #include "esp_hmac.h"
  9. #include "esp_err.h"
  10. #include "soc/soc_caps.h"
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #define ESP32S3_ERR_HW_CRYPTO_DS_HMAC_FAIL ESP_ERR_HW_CRYPTO_BASE + 0x1 /*!< HMAC peripheral problem */
  15. #define ESP32S3_ERR_HW_CRYPTO_DS_INVALID_KEY ESP_ERR_HW_CRYPTO_BASE + 0x2 /*!< given HMAC key isn't correct,
  16. HMAC peripheral problem */
  17. #define ESP32S3_ERR_HW_CRYPTO_DS_INVALID_DIGEST ESP_ERR_HW_CRYPTO_BASE + 0x4 /*!< message digest check failed,
  18. result is invalid */
  19. #define ESP32S3_ERR_HW_CRYPTO_DS_INVALID_PADDING ESP_ERR_HW_CRYPTO_BASE + 0x5 /*!< padding check failed, but result
  20. is produced anyway and can be read*/
  21. #define ESP_DS_IV_LEN 16
  22. /* Length of parameter 'C' stored in flash */
  23. #define ESP_DS_C_LEN (12672 / 8)
  24. typedef struct esp_ds_context esp_ds_context_t;
  25. typedef enum {
  26. ESP_DS_RSA_1024 = (1024 / 32) - 1,
  27. ESP_DS_RSA_2048 = (2048 / 32) - 1,
  28. ESP_DS_RSA_3072 = (3072 / 32) - 1,
  29. ESP_DS_RSA_4096 = (4096 / 32) - 1
  30. } esp_digital_signature_length_t;
  31. /**
  32. * Encrypted private key data. Recommended to store in flash in this format.
  33. *
  34. * @note This struct has to match to one from the ROM code! This documentation is mostly taken from there.
  35. */
  36. typedef struct esp_digital_signature_data {
  37. /**
  38. * RSA LENGTH register parameters
  39. * (number of words in RSA key & operands, minus one).
  40. *
  41. * Max value 127 (for RSA 4096).
  42. *
  43. * This value must match the length field encrypted and stored in 'c',
  44. * or invalid results will be returned. (The DS peripheral will
  45. * always use the value in 'c', not this value, so an attacker can't
  46. * alter the DS peripheral results this way, it will just truncate or
  47. * extend the message and the resulting signature in software.)
  48. *
  49. * @note In IDF, the enum type length is the same as of type unsigned, so they can be used interchangably.
  50. * See the ROM code for the original declaration of struct \c ets_ds_data_t.
  51. */
  52. esp_digital_signature_length_t rsa_length;
  53. /**
  54. * IV value used to encrypt 'c'
  55. */
  56. uint8_t iv[ESP_DS_IV_LEN];
  57. /**
  58. * Encrypted Digital Signature parameters. Result of AES-CBC encryption
  59. * of plaintext values. Includes an encrypted message digest.
  60. */
  61. uint8_t c[ESP_DS_C_LEN];
  62. } esp_ds_data_t;
  63. /** Plaintext parameters used by Digital Signature.
  64. *
  65. * Not used for signing with DS peripheral, but can be encrypted
  66. * in-device by calling esp_ds_encrypt_params()
  67. *
  68. * @note This documentation is mostly taken from the ROM code.
  69. */
  70. typedef struct {
  71. uint32_t Y[SOC_RSA_MAX_BIT_LEN / 32]; //!< RSA exponent
  72. uint32_t M[SOC_RSA_MAX_BIT_LEN / 32]; //!< RSA modulus
  73. uint32_t Rb[SOC_RSA_MAX_BIT_LEN / 32]; //!< RSA r inverse operand
  74. uint32_t M_prime; //!< RSA M prime operand
  75. esp_digital_signature_length_t length; //!< RSA length
  76. } esp_ds_p_data_t;
  77. /**
  78. * Sign the message.
  79. *
  80. * This function is a wrapper around \c esp_ds_finish_sign() and \c esp_ds_start_sign(), so do not use them
  81. * in parallel.
  82. * It blocks until the signing is finished and then returns the signature.
  83. *
  84. * @note This function locks the HMAC, SHA, AES and RSA components during its entire execution time.
  85. *
  86. * @param message the message to be signed; its length is determined by data->rsa_length
  87. * @param data the encrypted signing key data (AES encrypted RSA key + IV)
  88. * @param key_id the HMAC key ID determining the HMAC key of the HMAC which will be used to decrypt the
  89. * signing key data
  90. * @param signature the destination of the signature, should be (data->rsa_length + 1)*4 bytes long
  91. *
  92. * @return
  93. * - ESP_OK if successful, the signature was written to the parameter \c signature.
  94. * - ESP_ERR_INVALID_ARG if one of the parameters is NULL or data->rsa_length is too long or 0
  95. * - ESP_ERR_HW_CRYPTO_DS_HMAC_FAIL if there was an HMAC failure during retrieval of the decryption key
  96. * - ESP_ERR_NO_MEM if there hasn't been enough memory to allocate the context object
  97. * - ESP_ERR_HW_CRYPTO_DS_INVALID_KEY if there's a problem with passing the HMAC key to the DS component
  98. * - ESP_ERR_HW_CRYPTO_DS_INVALID_DIGEST if the message digest didn't match; the signature is invalid.
  99. * - ESP_ERR_HW_CRYPTO_DS_INVALID_PADDING if the message padding is incorrect, the signature can be read though
  100. * since the message digest matches.
  101. */
  102. esp_err_t esp_ds_sign(const void *message,
  103. const esp_ds_data_t *data,
  104. hmac_key_id_t key_id,
  105. void *signature);
  106. /**
  107. * Start the signing process.
  108. *
  109. * This function yields a context object which needs to be passed to \c esp_ds_finish_sign() to finish the signing
  110. * process.
  111. *
  112. * @note This function locks the HMAC, SHA, AES and RSA components, so the user has to ensure to call
  113. * \c esp_ds_finish_sign() in a timely manner.
  114. *
  115. * @param message the message to be signed; its length is determined by data->rsa_length
  116. * @param data the encrypted signing key data (AES encrypted RSA key + IV)
  117. * @param key_id the HMAC key ID determining the HMAC key of the HMAC which will be used to decrypt the
  118. * signing key data
  119. * @param esp_ds_ctx the context object which is needed for finishing the signing process later
  120. *
  121. * @return
  122. * - ESP_OK if successful, the ds operation was started now and has to be finished with \c esp_ds_finish_sign()
  123. * - ESP_ERR_INVALID_ARG if one of the parameters is NULL or data->rsa_length is too long or 0
  124. * - ESP_ERR_HW_CRYPTO_DS_HMAC_FAIL if there was an HMAC failure during retrieval of the decryption key
  125. * - ESP_ERR_NO_MEM if there hasn't been enough memory to allocate the context object
  126. * - ESP_ERR_HW_CRYPTO_DS_INVALID_KEY if there's a problem with passing the HMAC key to the DS component
  127. */
  128. esp_err_t esp_ds_start_sign(const void *message,
  129. const esp_ds_data_t *data,
  130. hmac_key_id_t key_id,
  131. esp_ds_context_t **esp_ds_ctx);
  132. /**
  133. * Return true if the DS peripheral is busy, otherwise false.
  134. *
  135. * @note Only valid if \c esp_ds_start_sign() was called before.
  136. */
  137. bool esp_ds_is_busy(void);
  138. /**
  139. * Finish the signing process.
  140. *
  141. * @param signature the destination of the signature, should be (data->rsa_length + 1)*4 bytes long
  142. * @param esp_ds_ctx the context object retreived by \c esp_ds_start_sign()
  143. *
  144. * @return
  145. * - ESP_OK if successful, the ds operation has been finished and the result is written to signature.
  146. * - ESP_ERR_INVALID_ARG if one of the parameters is NULL
  147. * - ESP_ERR_HW_CRYPTO_DS_INVALID_DIGEST if the message digest didn't match; the signature is invalid.
  148. * - ESP_ERR_HW_CRYPTO_DS_INVALID_PADDING if the message padding is incorrect, the signature can be read though
  149. * since the message digest matches.
  150. */
  151. esp_err_t esp_ds_finish_sign(void *signature, esp_ds_context_t *esp_ds_ctx);
  152. /**
  153. * Encrypt the private key parameters.
  154. *
  155. * @param data Output buffer to store encrypted data, suitable for later use generating signatures.
  156. * The allocated memory must be in internal memory and word aligned since it's filled by DMA. Both is asserted
  157. * at run time.
  158. * @param iv Pointer to 16 byte IV buffer, will be copied into 'data'. Should be randomly generated bytes each time.
  159. * @param p_data Pointer to input plaintext key data. The expectation is this data will be deleted after this process
  160. * is done and 'data' is stored.
  161. * @param key Pointer to 32 bytes of key data. Type determined by key_type parameter. The expectation is the
  162. * corresponding HMAC key will be stored to efuse and then permanently erased.
  163. *
  164. * @return
  165. * - ESP_OK if successful, the ds operation has been finished and the result is written to signature.
  166. * - ESP_ERR_INVALID_ARG if one of the parameters is NULL or p_data->rsa_length is too long
  167. */
  168. esp_err_t esp_ds_encrypt_params(esp_ds_data_t *data,
  169. const void *iv,
  170. const esp_ds_p_data_t *p_data,
  171. const void *key);
  172. #ifdef __cplusplus
  173. }
  174. #endif