Skip to content

Commit

Permalink
https://github.com/formosa-crypto/libjade/issues/105
Browse files Browse the repository at this point in the history
  • Loading branch information
tfaoliveira committed Feb 21, 2024
1 parent 0daf13f commit 7362bf2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/crypto_kem/kyber/common/amd64/avx2/reduce.jinc
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ fn __barrett_reduce(reg u16 a) -> reg u16
//t = #SAR_32(t, 26);
t >>s= 26;
t *= KYBER_Q;
r = t;
r = a;
r -= t;
return r;
Expand Down
1 change: 0 additions & 1 deletion src/crypto_kem/kyber/common/amd64/ref/reduce.jinc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ fn __barrett_reduce(reg u16 a) -> reg u16
//t = #SAR_32(t, 26);
t >>s= 26;
t *= KYBER_Q;
r = t;
r = a;
r -= t;
return r;
Expand Down

0 comments on commit 7362bf2

Please sign in to comment.