RenameServer/jwt.hpp
2021-07-08 07:41:34 +02:00

10 lines
157 B
C++

#ifndef JWT_HPP
#define JWT_HPP
#include <string>
std::string createLoginToken(const std::string &user);
bool verifyJWT(const std::string &token);
#endif