tech.figure.hdwallet.encoding.base58.Base58.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hdwallet-base58 Show documentation
Show all versions of hdwallet-base58 Show documentation
A collection of libraries to facilitate HDWallet usage
The newest version!
package tech.figure.hdwallet.encoding.base58
import tech.figure.hdwallet.encoding.shadow.org.bitcoinj.core.Base58
fun ByteArray.base58Encode(): String = Base58.encode(this)
fun String.base58Decode(): ByteArray = Base58.decode(this)
fun ByteArray.base58EncodeChecked(): String = Base58.encodeChecked(this)
fun String.base58DecodeChecked(): ByteArray = Base58.decodeChecked(this)