Created
August 14, 2019 17:38
-
-
Save calvincodes/9e9f27887df56d2302657d4aeb70f91f to your computer and use it in GitHub Desktop.
Describes Step 1 to 3 of JWT creation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val header = base64UrlEncode(header_json) // Step 1 | |
val payload = base64UrlEncode(payload_json) // Step 2 | |
val data = header + "." + payload // Step 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment