8 lines
142 B
Kotlin
8 lines
142 B
Kotlin
package com.infendro.hash.keccak.shake
|
|
|
|
import com.infendro.hash.keccak.Keccak
|
|
|
|
class SHAKE128(
|
|
bytes: Int,
|
|
) : Keccak(bytes, 168, 0x1FU)
|