9 lines
102 B
C
9 lines
102 B
C
|
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "jwt.h"
|
||
|
|
||
|
char *jwt_gen(cJSON *payload)
|
||
|
{
|
||
|
return strdup("TODO:)");
|
||
|
}
|