File: __init__.py

package info (click to toggle)
python-authlib 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,016 kB
  • sloc: python: 26,998; makefile: 53; sh: 14
file content (16 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""authlib.jose.rfc7517.
~~~~~~~~~~~~~~~~~~~~~

This module represents a direct implementation of
JSON Web Key (JWK).

https://tools.ietf.org/html/rfc7517
"""

from ._cryptography_key import load_pem_key
from .asymmetric_key import AsymmetricKey
from .base_key import Key
from .jwk import JsonWebKey
from .key_set import KeySet

__all__ = ["Key", "AsymmetricKey", "KeySet", "JsonWebKey", "load_pem_key"]