summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Collis <michael.l.collis@gmail.com>2016-09-21 19:57:19 -0400
committerGitHub <noreply@github.com>2016-09-21 19:57:19 -0400
commit256a03e5086049ee63d436fd0b07837e1a6c0f18 (patch)
treecebc4508f0fbca2d02b2fe68189aa73918f3b204
parent3edaa532a09c927832c6d893dbfbfc13e3f6f90f (diff)
downloadpyjwt-256a03e5086049ee63d436fd0b07837e1a6c0f18.tar.gz
Fix typo in Algorithms
-rw-r--r--jwt/algorithms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jwt/algorithms.py b/jwt/algorithms.py
index 51e8f16..3ca53bc 100644
--- a/jwt/algorithms.py
+++ b/jwt/algorithms.py
@@ -43,7 +43,7 @@ def get_default_algorithms():
'RS512': RSAAlgorithm(RSAAlgorithm.SHA512),
'ES256': ECAlgorithm(ECAlgorithm.SHA256),
'ES384': ECAlgorithm(ECAlgorithm.SHA384),
- 'ES512': ECAlgorithm(ECAlgorithm.SHA512),
+ 'ES521': ECAlgorithm(ECAlgorithm.SHA512),
'PS256': RSAPSSAlgorithm(RSAPSSAlgorithm.SHA256),
'PS384': RSAPSSAlgorithm(RSAPSSAlgorithm.SHA384),
'PS512': RSAPSSAlgorithm(RSAPSSAlgorithm.SHA512)