Skip to content

Commit

Permalink
Export PyJWK and PyJWKSet (#652)
Browse files Browse the repository at this point in the history
* Export PyJWK and PyJWKSet. Closes #646

* Update CHANGELOG
  • Loading branch information
jpadilla committed Apr 28, 2021
1 parent 816cbe5 commit c7f9ac5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -28,6 +28,7 @@ Added
- Add support for ES256K algorithm `#629 <https://github.com/jpadilla/pyjwt/pull/629>`__
- Add `from_jwk()` to Ed25519Algorithm `#621 <https://github.com/jpadilla/pyjwt/pull/621>`__
- Add `to_jwk()` to Ed25519Algorithm `#643 <https://github.com/jpadilla/pyjwt/pull/643>`__
- Export `PyJWK` and `PyJWKSet` `#652 <https://github.com/jpadilla/pyjwt/pull/652>`__

`v2.0.1 <https://github.com/jpadilla/pyjwt/compare/2.0.0...2.0.1>`__
--------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions jwt/__init__.py
@@ -1,3 +1,4 @@
from .api_jwk import PyJWK, PyJWKSet
from .api_jws import (
PyJWS,
get_unverified_header,
Expand Down Expand Up @@ -43,6 +44,8 @@
"PyJWS",
"PyJWT",
"PyJWKClient",
"PyJWK",
"PyJWKSet",
"decode",
"encode",
"get_unverified_header",
Expand Down

0 comments on commit c7f9ac5

Please sign in to comment.