Update 'Haskell Functions'

pitmutt 2023-06-14 16:32:58 +00:00
parent b89725887e
commit 4297716834
1 changed files with 4 additions and 4 deletions

@ -2,18 +2,18 @@
## Utils
## `decodeHexText :: String -> ByteString`
### `decodeHexText :: String -> ByteString`
Decodes a hex-encoded string into bytes.
## `decodeBech32 :: ByteString -> RawData`
### `decodeBech32 :: ByteString -> RawData`
Takes the bytestring representation of the encoded string and produces `RawData`.
## `f4Jumble :: ByteString -> ByteString`
### `f4Jumble :: ByteString -> ByteString`
Takes the input bytes and applies the [F4Jumble](https://zips.z.cash/zip-0316#jumbling) transformation.
## `f4UnJumble :: ByteString -> ByteString`
### `f4UnJumble :: ByteString -> ByteString`
Takes the input bytes and applies the [inverse F4Jumble](https://zips.z.cash/zip-0316#jumbling) transformation.