We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b735fe commit 53fd3e8Copy full SHA for 53fd3e8
pyproject.toml
@@ -2,7 +2,7 @@
2
3
[tool.poetry]
4
name = "cryptojwt"
5
-version = "1.9.4"
+version = "1.9.5"
6
description = "Python implementation of JWT, JWE, JWS and JWK"
7
authors = ["Roland Hedberg <roland@catalogix.se>"]
8
license = "Apache-2.0"
src/cryptojwt/jwk/__init__.py
@@ -274,7 +274,7 @@ def add_kid(self):
274
Construct a Key ID using the thumbprint method and add it to
275
the key attributes.
276
"""
277
- self.kid = b64e(self.thumbprint("SHA-256")).decode("utf8")
+ self.kid = self.thumbprint("SHA-256").decode("utf8")
278
279
def appropriate_for(self, usage, **kwargs):
280
0 commit comments