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

net.dankito.utils.extensions.ByteArrayExtensions.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils.extensions


fun ByteArray.toHexString(): String {
    val hexString = StringBuilder()

    for (index in 0 until this.size) {
        hexString.append(String.format("%02x", (0xFF and this[index].toInt())))
    }

    return hexString.toString()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy