package com.infendro.hash interface HashFunction { val bytes: Int val bits: Int get() = bytes * 8 val block: Int fun hash( value: UByteArray, ): UByteArray }