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 00073bf..d347dcc 100644 --- a/jwt/algorithms.py +++ b/jwt/algorithms.py @@ -75,7 +75,7 @@ class NoneAlgorithm(Algorithm): return b'' def verify(self, msg, key, sig): - return True + return False class HMACAlgorithm(Algorithm): |