hare

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

commit 3455bf5d755c8910ff6bda49909fc2591a2eba18
parent 9899bc692e77c4848902f0947db1ac682176e393
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 24 Mar 2021 20:26:36 -0400

crypto::random: hide internal stream state

Diffstat:
Mcrypto/random/random.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/random/random.ha b/crypto/random/random.ha @@ -1,7 +1,7 @@ use io; use rt; -export let _stream: io::stream = io::stream { +let _stream: io::stream = io::stream { name = "<random>", reader = &rand_reader, ...