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

scorex.crypto.encode.Base16.scala Maven / Gradle / Ivy

There is a newer version: 1.2.0-RC3
Show newest version
package scorex.crypto.encode

import scorex.crypto._

object Base16 {
  def encode(input: Array[Byte]): String = bytes2hex(input)

  def decode(input: String): Array[Byte] = hex2bytes(input)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy