Safe Haskell | None |
---|---|
Language | Haskell98 |
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.
- class FromCompact a where
- fromCompact :: [ByteString] -> Either Error a
- decodeCompact :: FromCompact a => ByteString -> Either Error a
- class ToCompact a where
- toCompact :: a -> Either Error [ByteString]
- encodeCompact :: ToCompact a => a -> Either Error ByteString
Documentation
class FromCompact a where Source
Data that can be parsed from a compact representation.
Methods
fromCompact :: [ByteString] -> Either Error a Source
Instances
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.
Methods
toCompact :: a -> Either Error [ByteString] Source
encodeCompact :: ToCompact a => a -> Either Error ByteString Source
Encode data to a compact representation.