Files
hash.kt/src/commonMain/kotlin/com/infendro/hash/HashFunction.kt

12 lines
196 B
Kotlin

package com.infendro.hash
sealed class HashFunction {
abstract val bytes: Int
val bits: Int
get() = bytes * 8
abstract fun hash(
value: ByteArray,
): ByteArray
}