Fix bug in splitter

This commit is contained in:
Arun M 2017-11-23 22:04:16 +05:30
parent 9abac3c5d7
commit f8947b53ac
3 changed files with 4 additions and 6 deletions

View file

@ -41,7 +41,7 @@ void basic_jwt_object_test()
obj3.secret("secret");
obj3.header().algo("hs256");
std::cout << obj3.signature() << std::endl;
auto dec_obj = jwt::jwt_decode(obj3.signature(), "secret");
}
int main() {