poly1305.c: fix typo on POLY1305_BLOCK_SIZE

no code change

Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24136)
This commit is contained in:
Yangyu Chen 2024-04-14 23:33:58 +08:00 committed by Tomas Mraz
parent 25391acc14
commit 96939f1e2c
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit)
h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8));
/*
* padbit can be zero only when original len was
* POLY1306_BLOCK_SIZE, but we don't check
* POLY1305_BLOCK_SIZE, but we don't check
*/
h2 += (u64)(d1 >> 64) + padbit;