From 582bd760b7141e26242e55a376956568c14ff13b Mon Sep 17 00:00:00 2001 From: Yawning Angel Date: Thu, 16 Nov 2023 12:57:28 +0900 Subject: [PATCH] core/crypto/shake: Add a TODO comment (NFC) --- core/crypto/shake/shake.odin | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/crypto/shake/shake.odin b/core/crypto/shake/shake.odin index dc7eb3387..21f698db5 100644 --- a/core/crypto/shake/shake.odin +++ b/core/crypto/shake/shake.odin @@ -9,6 +9,9 @@ package shake Interface for the SHAKE hashing algorithm. The SHA3 functionality can be found in package sha3. + + TODO: This should provide an incremental squeeze interface, in addition + to the one-shot final call. */ import "core:io"