sd-jwt-0.1.0.0: Selective Disclosure for JSON Web Tokens (RFC 9901)
Safe HaskellNone
LanguageHaskell2010

SDJWT

Description

This module re-exports the persona-specific modules for convenient access. Most users should import the specific persona module they need instead.

Recommended Usage

Import the persona-specific module for your role:

import SDJWT.Issuer   -- For creating and issuing SD-JWTs
import SDJWT.Holder   -- For receiving SD-JWTs and creating presentations
import SDJWT.Verifier -- For verifying SD-JWT presentations

Advanced Usage

For library developers or advanced users who need low-level access, import specific Internal modules as needed:

import SDJWT.Internal.Types
import SDJWT.Internal.Serialization
import SDJWT.Internal.Issuance
-- etc.

Documentation