Base58

scodec.bits.Bases.Alphabets.Base58
object Base58 extends Alphabet

Base 58 alphabet as defined by https://en.bitcoin.it/wiki/Base58Check_encoding#Base58_symbol_chart. IPFS hashes uses the same order.

Attributes

Source
Bases.scala
Graph
Supertypes
trait Alphabet
class Object
trait Matchable
class Any
Self type
Base58.type

Members list

Value members

Concrete methods

def ignore(c: Char): Boolean

Indicates whether the specified character should be ignored.

Indicates whether the specified character should be ignored.

Attributes

Source
Bases.scala
def toChar(i: Int): Char

Converts the specified index to a character.

Converts the specified index to a character.

Attributes

Throws

IndexOutOfBoundsException if the specified byte is not supported by this alphabet

Source
Bases.scala
def toIndex(c: Char): Int

Converts the specified char to an index.

Converts the specified char to an index.

Attributes

Throws

IllegalArgumentException if the specified char is not supported by this alphabet

Source
Bases.scala