From d26f046fc9149693a6ebc28301ccc3581c0f144e Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 9 Jan 2023 01:22:54 +0100 Subject: Initial commit --- jwt.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jwt.h (limited to 'jwt.h') diff --git a/jwt.h b/jwt.h new file mode 100644 index 0000000..d8db4a8 --- /dev/null +++ b/jwt.h @@ -0,0 +1,9 @@ +#ifndef JWT_H +#define JWT_H + +#include + +char *jwt_encode(const char *name, const void *key, size_t n); +int jwt_check(const char *jwt, const void *key, size_t n); + +#endif /* JWT_H */ -- cgit v1.2.3