JSON Object Signing and Encryption
The JOSE header specifies how the JWT token should be interpreted.
Algorithms such as HS512, RS256 (RSASSA SHA-256), and ES256 (ECDSA P-256 curve SHA-256) can be used.
{ "alg": "RS256", "typ": "JWT", "kid": "1234abcd" }

Seonglae Cho