tls_credentials.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief TLS credentials management
  8. *
  9. * An API for applications to configure TLS credentials.
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_TLS_CREDENTIALS_H_
  12. #define ZEPHYR_INCLUDE_NET_TLS_CREDENTIALS_H_
  13. /**
  14. * @brief TLS credentials management
  15. * @defgroup tls_credentials TLS credentials management
  16. * @ingroup networking
  17. * @{
  18. */
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /** TLS credential types */
  23. enum tls_credential_type {
  24. /** Unspecified credential. */
  25. TLS_CREDENTIAL_NONE,
  26. /** A trusted CA certificate. Use this to authenticate remote servers.
  27. * Used with certificate-based ciphersuites.
  28. */
  29. TLS_CREDENTIAL_CA_CERTIFICATE,
  30. /** A public server certificate. Use this to register your own server
  31. * certificate. Should be registered together with a corresponding
  32. * private key. Used with certificate-based ciphersuites.
  33. */
  34. TLS_CREDENTIAL_SERVER_CERTIFICATE,
  35. /** Private key. Should be registered together with a corresponding
  36. * public certificate. Used with certificate-based ciphersuites.
  37. */
  38. TLS_CREDENTIAL_PRIVATE_KEY,
  39. /** Pre-shared key. Should be registered together with a corresponding
  40. * PSK identity. Used with PSK-based ciphersuites.
  41. */
  42. TLS_CREDENTIAL_PSK,
  43. /** Pre-shared key identity. Should be registered together with a
  44. * corresponding PSK. Used with PSK-based ciphersuites.
  45. */
  46. TLS_CREDENTIAL_PSK_ID
  47. };
  48. /** Secure tag, a reference to TLS credential
  49. *
  50. * Secure tag can be used to reference credential after it was registered
  51. * in the system.
  52. *
  53. * @note Some TLS credentials come in pairs:
  54. * - TLS_CREDENTIAL_SERVER_CERTIFICATE with TLS_CREDENTIAL_PRIVATE_KEY,
  55. * - TLS_CREDENTIAL_PSK with TLS_CREDENTIAL_PSK_ID.
  56. * Such pairs of credentials must be assigned the same secure tag to be
  57. * correctly handled in the system.
  58. */
  59. typedef int sec_tag_t;
  60. /**
  61. * @brief Add a TLS credential.
  62. *
  63. * @details This function adds a TLS credential, that can be used
  64. * by TLS/DTLS for authentication.
  65. *
  66. * @param tag A security tag that credential will be referenced with.
  67. * @param type A TLS/DTLS credential type.
  68. * @param cred A TLS/DTLS credential.
  69. * @param credlen A TLS/DTLS credential length.
  70. *
  71. * @retval 0 TLS credential successfully added.
  72. * @retval -EACCES Access to the TLS credential subsystem was denied.
  73. * @retval -ENOMEM Not enough memory to add new TLS credential.
  74. * @retval -EEXIST TLS credential of specific tag and type already exists.
  75. */
  76. int tls_credential_add(sec_tag_t tag, enum tls_credential_type type,
  77. const void *cred, size_t credlen);
  78. /**
  79. * @brief Get a TLS credential.
  80. *
  81. * @details This function gets an already registered TLS credential,
  82. * referenced by @p tag secure tag of @p type.
  83. *
  84. * @param tag A security tag of requested credential.
  85. * @param type A TLS/DTLS credential type of requested credential.
  86. * @param cred A buffer for TLS/DTLS credential.
  87. * @param credlen A buffer size on input. TLS/DTLS credential length on output.
  88. *
  89. * @retval 0 TLS credential successfully obtained.
  90. * @retval -EACCES Access to the TLS credential subsystem was denied.
  91. * @retval -ENOENT Requested TLS credential was not found.
  92. * @retval -EFBIG Requested TLS credential does not fit in the buffer provided.
  93. */
  94. int tls_credential_get(sec_tag_t tag, enum tls_credential_type type,
  95. void *cred, size_t *credlen);
  96. /**
  97. * @brief Delete a TLS credential.
  98. *
  99. * @details This function removes a TLS credential, referenced by @p tag
  100. * secure tag of @p type.
  101. *
  102. * @param tag A security tag corresponding to removed credential.
  103. * @param type A TLS/DTLS credential type of removed credential.
  104. *
  105. * @retval 0 TLS credential successfully deleted.
  106. * @retval -EACCES Access to the TLS credential subsystem was denied.
  107. * @retval -ENOENT Requested TLS credential was not found.
  108. */
  109. int tls_credential_delete(sec_tag_t tag, enum tls_credential_type type);
  110. #ifdef __cplusplus
  111. }
  112. #endif
  113. /**
  114. * @}
  115. */
  116. #endif /* ZEPHYR_INCLUDE_NET_TLS_CREDENTIALS_H_ */