Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ashman-p committed Dec 16, 2023
1 parent 2416112 commit 2f93d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/sha2/sha2_armv8.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ void oqs_sha2_sha256_inc_armv8(sha256ctx *state, const uint8_t *in, size_t len)
}

for (size_t i = 0; i < incr; ++i, state->data_len++, in_index++) {
state->data[state->data_len] = in[in_index++)];
state->data[state->data_len] = in[in_index++];
}

if (state->data_len < 64) {
Expand Down

0 comments on commit 2f93d03

Please sign in to comment.