Rename the state block buffers from m{,len} to b{,len}

This commit is contained in:
Lucas Gabriel Vuotto 2024-06-15 21:22:12 +00:00
parent 230dedac16
commit 21251045f4
11 changed files with 83 additions and 83 deletions

View file

@ -167,10 +167,10 @@ poly1305_block(struct poly1305_state *state, uint32_t hibit)
x3 = state->x3;
x4 = state->x4;
t0 = load32le(&state->m[0]);
t1 = load32le(&state->m[4]);
t2 = load32le(&state->m[8]);
t3 = load32le(&state->m[12]);
t0 = load32le(&state->b[0]);
t1 = load32le(&state->b[4]);
t2 = load32le(&state->b[8]);
t3 = load32le(&state->b[12]);
t4 = hibit;
h0 += t0 & 0x3ffffff;