package com.chameth.yaotp.algos fun ByteArray.toHexString() = map { String.format("%02x", it) }.reduce(String::plus)