2025-10-04 12:07:30 +02:00
2025-07-12 19:27:26 +02:00
2025-08-17 09:56:54 +02:00
2025-07-12 19:25:45 +02:00
2025-07-24 20:55:09 +02:00
2025-08-17 09:56:54 +02:00
2025-08-17 09:56:54 +02:00
2025-07-12 19:25:45 +02:00
2025-10-04 12:07:30 +02:00
2025-07-12 19:25:45 +02:00

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
No description provided
Readme 506 KiB
Languages
Kotlin 100%