mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
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:
parent
25391acc14
commit
96939f1e2c
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user