Implement string view (with bot limited functionality)

This commit is contained in:
Arun M 2017-10-31 19:34:21 +05:30
parent 6a7d2d69c0
commit 063a0af131
6 changed files with 790 additions and 0 deletions

24
include/jwt/jwt.hpp Normal file
View file

@ -0,0 +1,24 @@
#ifndef JWT_HPP
#define JWT_HPP
namespace jwt {
enum class algorithm
{
NONE = 0,
HS256,
HS384,
HS512,
RS256,
RS384,
RS512,
ES256,
ES384,
ES512,
TERM,
};
} // END namespace jwt
#endif