6dc3cf3b873e375d47394cd6fd77b7de32e14674
Kotlin Hash
This library provides various Cryptographic Hash Function implementations in Kotlin Multiplatform.
Features
Installation
Add the following to your build.gradle.kts.
repositories {
maven("https://git.infendro.com/api/packages/Infendro/maven")
}
dependencies {
implementation("com.infendro:hash:1.2.2")
}
Usage
import com.infendro.hash.SHA256
fun main() {
// hash some value using SHA256
val value = "...".encodeToByteArray()
val hash = SHA256.hash(value)
}
Description
Languages
Kotlin
100%