Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ necessary, other RSA backends are supported. Options include crytography, pycryp

In order to use a custom backend, install python-jose with the appropriate extra.

It is reccomended that a custom backend is used in production, as the pure-python rsa module is slow.
It is recommended that a custom backend is used in production, as the pure-python rsa module is slow.

The crytography option is a good default.

Expand Down
3 changes: 1 addition & 2 deletions jose/jwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ def decode(token, key, algorithms=None, options=None, audience=None,
subject (str): The subject of the token. If the "sub" claim is
included in the claim set, then the subject must be included and must equal
the provided claim.
access_token (str): An access token returned alongside the id_token during
the authorization grant flow. If the "at_hash" claim is included in the
access_token (str): An access token string. If the "at_hash" claim is included in the
claim set, then the access_token must be included, and it must match
the "at_hash" claim.
options (dict): A dictionary of options for skipping validation steps.
Expand Down