diff options
Diffstat (limited to 'jwt/algorithms.py')
-rw-r--r-- | jwt/algorithms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jwt/algorithms.py b/jwt/algorithms.py index 2e4a2e8..00073bf 100644 --- a/jwt/algorithms.py +++ b/jwt/algorithms.py @@ -74,7 +74,7 @@ class NoneAlgorithm(Algorithm): def sign(self, msg, key): return b'' - def verify(self, msg, key): + def verify(self, msg, key, sig): return True |