Packages

object Encoding

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Encoding
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val base58alphabet: IndexedSeq[(Char, Int)]
  6. val charToIdxBase58: Map[Char, Int]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  8. def decodeFromBase58(b58: String): Either[EncodingError, Array[Byte]]

    Decodes a base58 string into a byte array.

    Decodes a base58 string into a byte array.

    b58

    the base58 string to decode

    returns

    the byte array

  9. def decodeFromBase58Check(b58: String): Either[EncodingError, Array[Byte]]

    Decodes a base58 string with a checksum into a byte array.

    Decodes a base58 string with a checksum into a byte array.

    b58

    the base58 string to decode

    returns

    the byte array

  10. def decodeFromHex(hex: String): Either[EncodingError, Array[Byte]]

    Decodes a hex string into a byte array.

    Decodes a hex string into a byte array.

    hex

    the hex string to decode

    returns

    the byte array

  11. def encodeToBase58(array: Array[Byte]): String

    Encodes a byte array into a base58 string

    Encodes a byte array into a base58 string

    array

    the byte array to encode

    returns

    the base58 string

  12. def encodeToBase58Check(payload: Array[Byte]): String

    Encodes a byte array into a base58 string with a checksum.

    Encodes a byte array into a base58 string with a checksum.

    payload

    the byte array to encode

    returns

    the base58 string

  13. def encodeToHex(array: Array[Byte]): String

    Encodes a byte array into a hex string.

    Encodes a byte array into a hex string.

    array

    the byte array to encode

    returns

    the hex string

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  18. val idxToCharBase58: Map[Int, Char]
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped