Home
last modified time | relevance | path

Searched refs:jwt_builder (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/include/zephyr/data/
Djwt.h32 struct jwt_builder { struct
70 int jwt_init_builder(struct jwt_builder *builder, argument
92 int jwt_add_payload(struct jwt_builder *builder,
109 int jwt_sign(struct jwt_builder *builder,
/Zephyr-latest/subsys/jwt/
Djwt.c61 static void base64_outch(struct jwt_builder *st, char ch) in base64_outch()
82 static void base64_flush(struct jwt_builder *st) in base64_flush()
104 static void base64_addbyte(struct jwt_builder *st, uint8_t byte) in base64_addbyte()
115 struct jwt_builder *st = data; in base64_append_bytes()
139 static int jwt_add_header(struct jwt_builder *builder) in jwt_add_header()
165 int jwt_add_payload(struct jwt_builder *builder, in jwt_add_payload()
185 int jwt_sign(struct jwt_builder *builder, in jwt_sign()
204 int jwt_init_builder(struct jwt_builder *builder, in jwt_init_builder()
Djwt.h12 int jwt_sign_impl(struct jwt_builder *builder, const unsigned char *der_key,
Djwt_legacy_rsa.c28 int jwt_sign_impl(struct jwt_builder *builder, const unsigned char *der_key, size_t der_key_len, in jwt_sign_impl()
Djwt_psa.c17 int jwt_sign_impl(struct jwt_builder *builder, const unsigned char *der_key, size_t der_key_len, in jwt_sign_impl()
/Zephyr-latest/tests/subsys/jwt/src/
Dmain.c36 struct jwt_builder build; in ZTEST()