Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jun 21, 2024
1 parent 03fd1cf commit 52c887a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sha1/src/compress/aarch64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ unsafe fn compress_sha1_neon(state: &mut [u32; 5], blocks: &[[u8; 64]]) {
e0 = vsha1h_u32(vgetq_lane_u32(abcd, 0));
abcd = vsha1pq_u32(abcd, e1, tmp1);

e0 += e0.wrapping_add(e0_cpy);
e0 = e0.wrapping_add(e0_cpy);
abcd = vaddq_u32(abcd_cpy, abcd);
}

Expand Down

0 comments on commit 52c887a

Please sign in to comment.