module Base58

Extended Modules

Defined in:

crystal-secp256k1-zkp/base58.cr

Constant Summary

ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
BASE = ALPHABET.size

Instance Method Summary

Instance Method Detail

def base58_to_bytes(base58_val : String) : Bytes #

[View source]
def base58_to_int(base58_val : String) : Number #

[View source]
def bytes_to_base58(binary_val : Bytes, include_leading_zeroes = true) : String #

[View source]
def int_to_base58(int_val : Number) : String #

[View source]