1.1.1 • Published 6 years ago

@datkt/pretty-hash v1.1.1

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

pretty-hash

Port of @pfrazee's pretty-hash function to print ByteArray data as a hex string

Installation

$ npm install @datkt/pretty-hash

Usage

import datkt.prettyhash.prettyHash

fun main(args: Array<String>) {
  val bytes = bytesFrom(
    0xde, 0xad, 0xbe, 0xef,
    0xde, 0xad, 0xbe, 0xef
  )

  val string = prettyHash(bytes)
  println(string) // deadbeefdeadbeef
}

konanc Config

Specify the following configuration in your modules .kc file for the konanc-config.

repo[] = "@datkt/pretty-hash"
require[] = "pretty-hash"
library[] = "pretty-hash"

API

prettyHash(bytes: Any? = null): String"

Converts given input into a pretty hash string made of hex characters.

Prerequisites

See Also

License

MIT