pass jwt_token_str and key by ref for performance
parent
e38dd4649d
commit
bc12205ec3
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
// returns username if valid, "" if not
|
// returns username if valid, "" if not
|
||||||
#if HAVE_LIBJWT
|
#if HAVE_LIBJWT
|
||||||
std::pair <std::string, unsigned int> verifyToken(std::string jwt_token_str, std::string key) {
|
std::pair <std::string, unsigned int> verifyToken(const std::string &jwt_token_str, const std::string &key) {
|
||||||
std::string username = "";
|
std::string username = "";
|
||||||
unsigned int token_issued_at = 0;
|
unsigned int token_issued_at = 0;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
Loading…
Reference in New Issue