implement block property

This commit is contained in:
2025-11-10 14:44:32 +01:00
parent e5bbd9730c
commit 2051c3fcbd
8 changed files with 24 additions and 4 deletions

View File

@@ -7,6 +7,8 @@ abstract class HashFunction {
val bits: Int
get() = bytes * 8
abstract val block: Int
abstract fun hash(
value: UByteArray,
): UByteArray