| Copyright | (c) 2020 Emily Pillmore |
|---|---|
| License | BSD-style |
| Maintainer | Emily Pillmore <emilypi@cohomolo.gy> |
| Stability | Experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.ByteString.Base32.Hex
Description
This module contains the combinators implementing the RFC 4648 specification for the Base32-Hex encoding including unpadded and lenient variants
Synopsis
- encodeBase32 :: ByteString -> Text
- encodeBase32' :: ByteString -> ByteString
- decodeBase32 :: ByteString -> Either Text ByteString
- encodeBase32Unpadded :: ByteString -> Text
- encodeBase32Unpadded' :: ByteString -> ByteString
- decodeBase32Unpadded :: ByteString -> Either Text ByteString
- isBase32Hex :: ByteString -> Bool
- isValidBase32Hex :: ByteString -> Bool
Documentation
encodeBase32 :: ByteString -> Text Source #
Encode a ByteString value as a Base32hex Text value with padding.
See: RFC-4648 section 7
encodeBase32' :: ByteString -> ByteString Source #
Encode a ByteString as a Base32hex ByteString value with padding.
See: RFC-4648 section 7
decodeBase32 :: ByteString -> Either Text ByteString Source #
Decode a padded Base32hex encoded ByteString value.
See: RFC-4648 section 7
encodeBase32Unpadded :: ByteString -> Text Source #
Encode a ByteString as a Base32hex Text value without padding.
encodeBase32Unpadded' :: ByteString -> ByteString Source #
Encode a ByteString as a Base32hex ByteString value without padding.
decodeBase32Unpadded :: ByteString -> Either Text ByteString Source #
Decode an arbitrarily padded Base32hex encoded ByteString value.
isBase32Hex :: ByteString -> Bool Source #
Tell whether a ByteString is Base32hex-encoded.
isValidBase32Hex :: ByteString -> Bool Source #
Tell whether a ByteString is a valid Base32hex format.
This will not tell you whether or not this is a correct Base32hex representation,
only that it conforms to the correct shape. To check whether it is a true
Base32 encoded ByteString value, use isBase32Hex.