lepture/authlib

View on GitHub
authlib/jose/rfc7516/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""
    authlib.jose.rfc7516
    ~~~~~~~~~~~~~~~~~~~~~

    This module represents a direct implementation of
    JSON Web Encryption (JWE).

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

from .jwe import JsonWebEncryption
from .models import JWEAlgorithm, JWEAlgorithmWithTagAwareKeyAgreement, JWEEncAlgorithm, JWEZipAlgorithm


__all__ = [
    'JsonWebEncryption',
    'JWEAlgorithm', 'JWEAlgorithmWithTagAwareKeyAgreement', 'JWEEncAlgorithm', 'JWEZipAlgorithm'
]