module BaseX::Base58
 
  Extended Modules
Defined in:
base_x/base.crConstant Summary
- 
        DEFAULT = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
- 
        FLICKR = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"
- 
        RIPPLE = "rpshnaf39wBUDNEGHJKLM4PQRST7VWXYZ2bcdeCg65jkm8oFqi1tuvAxyz"
Instance Method Summary
- #decode(str : String, alphabet = DEFAULT) : Bytes
- #decode_bytes(str : String, alphabet = DEFAULT) : Bytes
- #decode_int(str : String, alphabet = DEFAULT) : BigInt
- #encode(bytes : Bytes, alphabet = DEFAULT, leading_zeroes = true) : String
- #encode(int : Number, alphabet = DEFAULT) : String