Popularity
5.9
Declining
Activity
4.6
-
5
4
6

Monthly Downloads: 61
Programming language: Haskell
License: MIT License
Tags: Text    

hex-text alternatives and similar packages

Based on the "Text" category.
Alternatively, view hex-text alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of hex-text or a related project?

Add another 'Text' Package

README

hex-text

hex-text is a small library for converting between ByteStrings and their representations as hexidecimal numbers encoded as Text.

Motivation

When using Stripe for payments, Stripe sends a signature as a hexidecimal Text value. The cryptonite package can be used to verify the signature, but it requires ByteString values, not Text.

Example usage

A ByteString is a list of bytes. A byte is a number between 0 and 255, represented by the Word8 type. In a fixed-width hexidecimal representation, the lowest byte 0 is represented by the hex string 00, and the greatest byte 255 is represented by the hex string ff. So, for example, the ByteString consisting of bytes [ 1, 2, 3, 253, 254, 255 ] is represented as 010203fdfeff.

λ> import Text.Hex (encodeHex)
λ> import Data.ByteString (pack)

λ> (encodeHex . pack) [1, 2, 3, 253, 254, 255]
"010203fdfeff"