slcl/jwt.h

10 lines
192 B
C
Raw Normal View History

2023-01-09 01:22:54 +01:00
#ifndef JWT_H
#define JWT_H
#include <stddef.h>
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 */