hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit f4cc258c5d5613578b4695854f1eeb666b2641d8
parent 36339a64ab86e01a029ca6c287b184a69aa325a1
Author: Sebastian <sebastian@sebsite.pw>
Date:   Mon, 27 Nov 2023 01:19:00 -0500

crypto::sha1: document BLOCKSZ

For consistency witih other crypto:: submodules

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mcrypto/sha1/sha1.ha | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/crypto/sha1/sha1.ha b/crypto/sha1/sha1.ha @@ -10,6 +10,7 @@ use io; // The size, in bytes, of a SHA-1 digest. export def SZ: size = 20; +// The internal block size. export def BLOCKSZ: size = 64; def chunk: size = 64;