implement keccak

This commit is contained in:
2025-11-09 20:53:01 +01:00
parent 88d673922a
commit e3619a2df1
7 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.infendro.hash.keccak.shake
import com.infendro.hash.keccak.Keccak
@Suppress("UNUSED")
class SHAKE128(bytes: Int) : Keccak(bytes, 168, 0x1F)