From b75432053e9a26a8bf620b8ffc547cdf3788d86f Mon Sep 17 00:00:00 2001 From: blackshirt Date: Wed, 11 Feb 2026 10:24:24 +0700 Subject: [PATCH] crypto: add shake128 and shake256 entries into crypto.Hash enum (#26576) --- vlib/crypto/crypto.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vlib/crypto/crypto.v b/vlib/crypto/crypto.v index 12a092fcb..b409bc4a7 100644 --- a/vlib/crypto/crypto.v +++ b/vlib/crypto/crypto.v @@ -16,6 +16,8 @@ pub enum Hash { sha3_512 sha512_224 sha512_256 + shake128 + shake256 blake2s_256 blake2b_256 blake2b_384 -- 2.39.5