All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.binaryfoo.tlv.HexExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package io.github.binaryfoo.tlv

fun Iterable.toHexString(): String {
    return ISOUtil.hexString(this)
}

fun ByteArray.toHexString(): String {
    return ISOUtil.hexString(this)
}

fun Byte.toHexString(): String {
    return ISOUtil.hexString(this)
}

fun String.decodeAsHex(): ByteArray {
    return ISOUtil.hex2byte(this);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy