haskoin-core-0.6.0: src/Network/Haskoin/Address/Base58.hs
{-# LANGUAGE OverloadedStrings #-}
{-|
Module : Network.Haskoin.Address.Base58
Copyright : No rights reserved
License : UNLICENSE
Maintainer : xenog@protonmail.com
Stability : experimental
Portability : POSIX
Support for legacy 'Base58' addresses. Superseded by Bech32 for Bitcoin SegWit
(BTC) and CashAddr for Bitcoin Cash (BCH).
-}
module Network.Haskoin.Address.Base58
( Base58
, encodeBase58
, decodeBase58
, encodeBase58Check
, decodeBase58Check
) where
import Control.Monad
import Data.ByteString (ByteString)
import qualified Data.ByteString as BS
import qualified Data.ByteString.Char8 as C
import Data.Maybe (fromMaybe, isJust, listToMaybe)
import Data.Serialize as S
import Data.String.Conversions (cs)
import Data.Text (Text)
import qualified Data.Text as T
import Network.Haskoin.Crypto.Hash
import Network.Haskoin.Util
import Numeric (readInt, showIntAtBase)
-- | 'Base58' classic Bitcoin address format.
type Base58 = Text
-- | Symbols for Base58 encoding.
b58Data :: ByteString
b58Data = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
-- | Convert a number less than or equal to provided integer into a 'Base58'
-- character.
b58 :: Int -> Char
b58 = C.index b58Data
-- | Convert a 'Base58' character into the number it represents.
b58' :: Char -> Maybe Int
b58' = flip C.elemIndex b58Data
-- | Encode an arbitrary-length 'Integer' into a 'Base58' string. Leading zeroes
-- will not be part of the resulting string.
encodeBase58I :: Integer -> Base58
encodeBase58I i = cs $ showIntAtBase 58 b58 i ""
-- | Decode a 'Base58' string into an arbitrary-length 'Integer'.
decodeBase58I :: Base58 -> Maybe Integer
decodeBase58I s =
case go of
Just (r,[]) -> Just r
_ -> Nothing
where
p = isJust . b58'
f = fromMaybe e . b58'
go = listToMaybe $ readInt 58 p f (cs s)
e = error "Could not decode base58"
-- | Encode an arbitrary 'ByteString' into a its 'Base58' representation,
-- preserving leading zeroes.
encodeBase58 :: ByteString -> Base58
encodeBase58 bs =
l `mappend` r
where
(z, b) = BS.span (== 0) bs
l = cs $ BS.replicate (BS.length z) (BS.index b58Data 0) -- preserve leading 0's
r | BS.null b = T.empty
| otherwise = encodeBase58I $ bsToInteger b
-- | Decode a 'Base58'-encoded 'Text' to a 'ByteString'.
decodeBase58 :: Base58 -> Maybe ByteString
decodeBase58 t =
BS.append prefix <$> r
where
(z, b) = BS.span (== BS.index b58Data 0) (cs t)
prefix = BS.replicate (BS.length z) 0 -- preserve leading 1's
r | BS.null b = Just BS.empty
| otherwise = integerToBS <$> decodeBase58I (cs b)
-- | Computes a checksum for the input 'ByteString' and encodes the input and
-- the checksum as 'Base58'.
encodeBase58Check :: ByteString -> Base58
encodeBase58Check bs =
encodeBase58 $ BS.append bs $ encode $ checkSum32 bs
-- | Decode a 'Base58'-encoded string that contains a checksum. This function
-- returns 'Nothing' if the input string contains invalid 'Base58' characters or
-- if the checksum fails.
decodeBase58Check :: Base58 -> Maybe ByteString
decodeBase58Check bs = do
rs <- decodeBase58 bs
let (res, chk) = BS.splitAt (BS.length rs - 4) rs
guard $ chk == encode (checkSum32 res)
return res