Skip to content

Commit

Permalink
Updated README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-adams committed Apr 10, 2015
1 parent 68d1f89 commit 77e69ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[Unreleased][unreleased]
-------------------------------------------------------------------------
### Changed
- Added flexible and complete verification options during decode #131
- Added support for PS256, PS384, and PS512 algorithms. #132
- Added this CHANGELOG.md file
- Added flexible and complete verification options. #131


### Fixed
- Placeholder
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ except jwt.InvalidTokenError:
```

You may also override exception checking via an `options` dictionary. The default
options are as follows:
options are as follows:

```python
options = {
Expand Down Expand Up @@ -112,6 +112,9 @@ currently supports:
* RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash algorithm
* RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash algorithm
* RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash algorithm
* PS256 - RSASSA-PSS signature using SHA-256 and MGF1 padding with SHA-256
* PS384 - RSASSA-PSS signature using SHA-384 and MGF1 padding with SHA-384
* PS512 - RSASSA-PSS signature using SHA-512 and MGF1 padding with SHA-512

### Encoding
You can specify which algorithm you would like to use to sign the JWT
Expand Down

0 comments on commit 77e69ff

Please sign in to comment.