mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
hashx: minor, another logical operator change
The code style in equix and hashx sometimes uses bitwise operators in place of logical ones in cases where it doesn't really matter either way. This sometimes annoys our static analyzer tools. Signed-off-by: Micah Elizabeth Scott <beth@torproject.org>
This commit is contained in:
parent
c40c5adec2
commit
941613c663
1 changed files with 2 additions and 2 deletions
|
@ -712,8 +712,8 @@ bool hashx_program_generate(const siphash_state* key, hashx_program* program) {
|
|||
/* reject programs that don't meet the uniform complexity requirements */
|
||||
/* this happens in less than 1 seed out of 10000 */
|
||||
return
|
||||
(program->code_size == REQUIREMENT_SIZE) &
|
||||
(ctx.mul_count == REQUIREMENT_MUL_COUNT) &
|
||||
(program->code_size == REQUIREMENT_SIZE) &&
|
||||
(ctx.mul_count == REQUIREMENT_MUL_COUNT) &&
|
||||
(ctx.latency == REQUIREMENT_LATENCY - 1); /* cycles are numbered from 0 */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue