12 lines
196 B
Kotlin
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
|
|
}
|