File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
77[ Unreleased] [ unreleased ]
88-------------------------------------------------------------------------
99### Changed
10+ - Added flexible and complete verification options during decode #131
11+ - Added support for PS256, PS384, and PS512 algorithms. #132
1012- Added this CHANGELOG.md file
11- - Added flexible and complete verification options. # 131
13+
1214
1315### Fixed
1416- Placeholder
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ except jwt.InvalidTokenError:
6363```
6464
6565You may also override exception checking via an ` options ` dictionary. The default
66- options are as follows:
66+ options are as follows:
6767
6868``` python
6969options = {
@@ -112,6 +112,9 @@ currently supports:
112112* RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash algorithm
113113* RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash algorithm
114114* RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash algorithm
115+ * PS256 - RSASSA-PSS signature using SHA-256 and MGF1 padding with SHA-256
116+ * PS384 - RSASSA-PSS signature using SHA-384 and MGF1 padding with SHA-384
117+ * PS512 - RSASSA-PSS signature using SHA-512 and MGF1 padding with SHA-512
115118
116119### Encoding
117120You can specify which algorithm you would like to use to sign the JWT
You can’t perform that action at this time.
0 commit comments