jwt.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (c) 2018 Linaro Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DATA_JWT_H_
  7. #define ZEPHYR_INCLUDE_DATA_JWT_H_
  8. #include <zephyr/types.h>
  9. #include <stdbool.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @brief JSON Web Token (JWT)
  15. * @defgroup jwt JSON Web Token (JWT)
  16. * @ingroup structured_data
  17. * @{
  18. */
  19. /**
  20. * @brief JWT data tracking.
  21. *
  22. * JSON Web Tokens contain several sections, each encoded in base-64.
  23. * This structure tracks the token as it is being built, including
  24. * limits on the amount of available space. It should be initialized
  25. * with jwt_init().
  26. */
  27. struct jwt_builder {
  28. /** The base of the buffer we are writing to. */
  29. char *base;
  30. /** The place in this buffer where we are currently writing.
  31. */
  32. char *buf;
  33. /** The length remaining to write. */
  34. size_t len;
  35. /**
  36. * Flag that is set if we try to write past the end of the
  37. * buffer. If set, the token is not valid.
  38. */
  39. bool overflowed;
  40. /* Pending bytes yet to be converted to base64. */
  41. unsigned char wip[3];
  42. /* Number of pending bytes. */
  43. int pending;
  44. };
  45. /**
  46. * @brief Initialize the JWT builder.
  47. *
  48. * Initialize the given JWT builder for the creation of a fresh token.
  49. * The buffer size should at least be as long as JWT_BUILDER_MAX_SIZE
  50. * returns.
  51. *
  52. * @param builder The builder to initialize.
  53. * @param buffer The buffer to write the token to.
  54. * @param buffer_size The size of this buffer. The token will be NULL
  55. * terminated, which needs to be allowed for in this size.
  56. *
  57. * @retval 0 Success
  58. * @retval -ENOSPC Buffer is insufficient to initialize
  59. */
  60. int jwt_init_builder(struct jwt_builder *builder,
  61. char *buffer,
  62. size_t buffer_size);
  63. /**
  64. * @brief add JWT primary payload.
  65. */
  66. int jwt_add_payload(struct jwt_builder *builder,
  67. int32_t exp,
  68. int32_t iat,
  69. const char *aud);
  70. /**
  71. * @brief Sign the JWT token.
  72. */
  73. int jwt_sign(struct jwt_builder *builder,
  74. const char *der_key,
  75. size_t der_key_len);
  76. static inline size_t jwt_payload_len(struct jwt_builder *builder)
  77. {
  78. return (builder->buf - builder->base);
  79. }
  80. #ifdef __cplusplus
  81. }
  82. #endif
  83. /**
  84. * @}
  85. */
  86. #endif /* ZEPHYR_INCLUDE_DATA_JWT_H_ */