hare

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

commit 6bc42d1dba8c0bee89c27d8325a7ec58a2797e67
parent bacc502677d827810a4518078214d759fe1dbdfd
Author: Ember Sawady <ecs@d2evs.net>
Date:   Fri,  9 Jun 2023 02:11:17 +0000

Fix chachapoly compilation

oops

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

diff --git a/crypto/chachapoly/chachapoly.ha b/crypto/chachapoly/chachapoly.ha @@ -40,6 +40,7 @@ export fn chachapoly() stream = { stream = &vtable, c = chacha::chacha20(), p = poly1305::poly1305(), + h = io::tee(io::empty, io::empty), ... }; };