Skip to content
Open
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 docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
# The format is a list of tuples containing the path and title.
#epub_pre_files = []

# HTML files shat should be inserted after the pages created by sphinx.
# HTML files that should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_post_files = []

Expand Down
2 changes: 1 addition & 1 deletion jose.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ class _JWA(object):

def __getitem__(self, key):
""" Derive implementation(s) from key
If key is compond <encryption>(-|+)<hash> then it will return a tuple
If key is compound <encryption>(-|+)<hash> then it will return a tuple
of implementations.
Each implementation is a tuple in following format:
- for hash algorithms ((<sign function>, <verify function>), <mod>)
Expand Down
2 changes: 1 addition & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def test_jwe_adata(self):
jwt = jose.legacy_decrypt(jose.deserialize_compact(et), rsa_priv_key,
adata=adata)

# make sure signaures don't match when adata isn't passed in
# make sure signatures don't match when adata isn't passed in
try:
hdr, dt = jose.legacy_decrypt(jose.deserialize_compact(et),
rsa_priv_key)
Expand Down