aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/whrlpool
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-07-16 08:25:55 +0200
committerPauli <pauli@openssl.org>2023-07-18 18:54:45 +1000
commita024ab984e540bff65d25407496c34b3567b55a7 (patch)
tree926b3165cd52ea6abe176682d13fadb59cc0f224 /crypto/whrlpool
parent4c4fefa5c78a49b63113aec35a2bc8d6d9432436 (diff)
downloadopenssl-a024ab984e540bff65d25407496c34b3567b55a7.tar.gz
Fix typos found by codespell
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21467)
Diffstat (limited to 'crypto/whrlpool')
-rw-r--r--crypto/whrlpool/wp_dgst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/whrlpool/wp_dgst.c b/crypto/whrlpool/wp_dgst.c
index 4a1d912d62..2a4e392e08 100644
--- a/crypto/whrlpool/wp_dgst.c
+++ b/crypto/whrlpool/wp_dgst.c
@@ -120,7 +120,7 @@ void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *_inp, size_t bits)
} else {
unsigned int byteoff = bitoff / 8;
- bitrem = WHIRLPOOL_BBLOCK - bitoff; /* re-use bitrem */
+ bitrem = WHIRLPOOL_BBLOCK - bitoff; /* reuse bitrem */
if (bits >= bitrem) {
bits -= bitrem;
bitrem /= 8;