e3619a2df15b93ed491039097c70d9e49fe3f419
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%