VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Crypto/Whirlpool.c
diff options
context:
space:
mode:
authorRoboSchmied <github@roboschmie.de>2024-04-10 23:50:05 +0200
committerGitHub <noreply@github.com>2024-04-10 23:50:05 +0200
commitc446773823e8b8e8a3dd2cebb30af1e96e2627bd (patch)
treef297390b1fd5bad630c148a57f829025d046b7f2 /src/Crypto/Whirlpool.c
parentbd4566fe1fa4891542123315be9d1dd96db2e5b2 (diff)
downloadVeraCrypt-c446773823e8b8e8a3dd2cebb30af1e96e2627bd.tar.gz
VeraCrypt-c446773823e8b8e8a3dd2cebb30af1e96e2627bd.zip
Fix: 7 typos (#1324)
Signed-off-by: RoboSchmied <github@roboschmie.de>
Diffstat (limited to 'src/Crypto/Whirlpool.c')
-rw-r--r--src/Crypto/Whirlpool.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Crypto/Whirlpool.c b/src/Crypto/Whirlpool.c
index 98ba318d..9af0cb32 100644
--- a/src/Crypto/Whirlpool.c
+++ b/src/Crypto/Whirlpool.c
@@ -894,7 +894,7 @@ static uint64 HashMultipleBlocks(WHIRLPOOL_CTX * const ctx, const uint64 *input,
#if BYTE_ORDER == BIG_ENDIAN
WhirlpoolTransform(ctx->state, input);
#else
- CorrectEndianess(dataBuf, input, 64);
+ CorrectEndianness(dataBuf, input, 64);
WhirlpoolTransform(ctx->state, dataBuf);
#endif
input += 8;
@@ -1008,7 +1008,7 @@ void WHIRLPOOL_finalize(WHIRLPOOL_CTX * const ctx,
memset(data, 0, 32);
}
#if BYTE_ORDER == LITTLE_ENDIAN
- CorrectEndianess(dataBuf, dataBuf, 32);
+ CorrectEndianness(dataBuf, dataBuf, 32);
#endif
dataBuf[4] = 0;
@@ -1018,7 +1018,7 @@ void WHIRLPOOL_finalize(WHIRLPOOL_CTX * const ctx,
WhirlpoolTransform(stateBuf, dataBuf);
#if BYTE_ORDER == LITTLE_ENDIAN
- CorrectEndianess(stateBuf, stateBuf, 64);
+ CorrectEndianness(stateBuf, stateBuf, 64);
#endif
memcpy(result, stateBuf, 64);
}