Skip to content

Commit daa37b4

Browse files
authored
Adding "What is JWT"
1 parent f5f87da commit daa37b4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,20 @@ composer require firebase/php-jwt
1616
- Run Encode: `$ php encode.php`
1717
- Run Decode: `$ php decode.php`
1818

19+
### What's JWT?
20+
21+
**JSON Web Tokens** are an open, industry standard RFC 7519 method for representing claims securely between two parties.
22+
23+
JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties.
24+
25+
The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.
1926

2027
### Related pages
2128

2229
- https://jwt.io/
2330
- https://github.com/firebase/php-jwt
2431
- https://github.com/cdoco/php-jwt
25-
32+
- https://tools.ietf.org/html/rfc7519
2633

2734
### Acknowledgment
2835

0 commit comments

Comments
 (0)