jose-0.4.0.3: Javascript Object Signing and Encryption and JSON Web Token library

Safe HaskellNone
LanguageHaskell98

Crypto.JOSE.Compact

Description

JWS, JWE and some related specifications provide for "compact" representations of certain types. This module defines classes and functions for working with such data.

Synopsis

Documentation

class FromCompact a where Source #

Data that can be parsed from a compact representation.

Minimal complete definition

fromCompact

decodeCompact :: FromCompact a => ByteString -> Either Error a Source #

Decode a compact representation.

class ToCompact a where Source #

Data that can be converted to a compact representation.

Minimal complete definition

toCompact

encodeCompact :: ToCompact a => a -> Either Error ByteString Source #

Encode data to a compact representation.