hare

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

commit 5b7408316785b6426123bae399d16328b3cb6713
parent 18d8dbcbfe6f2b7dba6016ee80141047830122af
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 17 Apr 2022 16:54:21 +0200

crypto::blowfish: fix aes reference

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mcrypto/blowfish/README | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/blowfish/README b/crypto/blowfish/README @@ -1,7 +1,7 @@ The crypto::blowfish module provides an implementation of Bruce Schneier's Blowfish encryption standard via the [[crypto::cipher::block]] interface. The use of this algorithm is not recommended except for legacy use-cases; prefer -[[aes]] when possible. +[[crypto::aes]] when possible. When combined with a block cipher mode from [[crypto::cipher]], suitable buffer lengths for static allocation are provided as constants such as [[BLOCKSIZE]].