io.github.binaryfoo.tlv.HexExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of emv-bertlv Show documentation
Show all versions of emv-bertlv Show documentation
Some decoders for the data used in EMV credit card transactions.
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