1 /*
2  * Copyright (C) 2024 BayLibre SAS
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_SUBSYS_JWT_JWT_H_
8 #define ZEPHYR_SUBSYS_JWT_JWT_H_
9 
10 #include <zephyr/data/jwt.h>
11 
12 int jwt_sign_impl(struct jwt_builder *builder, const unsigned char *der_key,
13 		  size_t der_key_len, unsigned char *sig, size_t sig_size);
14 
15 #endif /* ZEPHYR_SUBSYS_JWT_JWT_H_ */
16