aboutsummaryrefslogtreecommitdiff
path: root/jwt.h
blob: d8db4a81ae0fc58892a6ddb9964ccf3cccf005b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
#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 */