mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-15 17:28:37 +00:00
Implement string view (with bot limited functionality)
This commit is contained in:
parent
6a7d2d69c0
commit
063a0af131
6 changed files with 790 additions and 0 deletions
24
include/jwt/jwt.hpp
Normal file
24
include/jwt/jwt.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue