Skip to content

Commit

Permalink
Merge branch 'main' into feature/hakyber_mlkem
Browse files Browse the repository at this point in the history
  • Loading branch information
tfaoliveira-sb committed Apr 16, 2024
2 parents 4844916 + bc15608 commit 9e18166
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
url = https://github.com/tyhicks/ssbd-tools.git
[submodule "submodules/crypto-specs"]
path = submodules/crypto-specs
url = git@github.com:formosa-crypto/crypto-specs.git
url = https://github.com/formosa-crypto/crypto-specs.git
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 9e18166

Please sign in to comment.