RenameServer/jwt.hpp

10 lines
157 B
C++
Raw Normal View History

2021-07-08 05:41:34 +00:00
#ifndef JWT_HPP
#define JWT_HPP
#include <string>
std::string createLoginToken(const std::string &user);
bool verifyJWT(const std::string &token);
#endif