Skip to content

Commit 77e69ff

Browse files
committed
Updated README and CHANGELOG
1 parent 68d1f89 commit 77e69ff

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ except jwt.InvalidTokenError:
6363
```
6464

6565
You may also override exception checking via an `options` dictionary. The default
66-
options are as follows:
66+
options are as follows:
6767

6868
```python
6969
options = {
@@ -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
117120
You can specify which algorithm you would like to use to sign the JWT

0 commit comments

Comments
 (0)