Skip to content

Commit 9e18166

Browse files
Merge branch 'main' into feature/hakyber_mlkem
2 parents 4844916 + bc15608 commit 9e18166

File tree

4 files changed

+1
-3
lines changed

4 files changed

+1
-3
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
url = https://github.com/tyhicks/ssbd-tools.git
44
[submodule "submodules/crypto-specs"]
55
path = submodules/crypto-specs
6-
url = git@github.com:formosa-crypto/crypto-specs.git
6+
url = https://github.com/formosa-crypto/crypto-specs.git

src/crypto_kem/kyber/common/amd64/avx2/reduce.jinc

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ fn __barrett_reduce(reg u16 a) -> reg u16
8686
//t = #SAR_32(t, 26);
8787
t >>s= 26;
8888
t *= KYBER_Q;
89-
r = t;
9089
r = a;
9190
r -= t;
9291
return r;

src/crypto_kem/kyber/common/amd64/ref/reduce.jinc

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ fn __barrett_reduce(reg u16 a) -> reg u16
3939
//t = #SAR_32(t, 26);
4040
t >>s= 26;
4141
t *= KYBER_Q;
42-
r = t;
4342
r = a;
4443
r -= t;
4544
return r;

0 commit comments

Comments
 (0)