| Portability | non-portable |
|---|---|
| Stability | experimental |
| Maintainer | me@jspha.com |
| Safe Haskell | None |
System.Environment.Parser.Encoded
Description
Often it's useful to pass binary data through the environment as an encoded string. This module provides handy types for specifying these kinds of data.
data SecretKeys = Sk { key1 :: Base64, key2 :: Base64 }
Documentation
Isomorphic to a ByteString, a type which prefers to be base-64
encoded.
Constructors
| Base64 | |
Fields | |
Isomorphic to a ByteString, a type which prefers to be base-64-url
encoded (see http://www.apps.ietf.org/rfc/rfc4648.html).
Constructors
| Base64Url | |
Fields | |