refactor package structure

This commit is contained in:
2025-11-09 20:03:49 +01:00
parent c14269e0c6
commit 88d673922a
8 changed files with 38 additions and 21 deletions

View File

@@ -1,7 +1,8 @@
package com.infendro.hash
sealed class HashFunction {
abstract class HashFunction {
abstract val bytes: Int
@Suppress("UNUSED")
val bits: Int
get() = bytes * 8