Skip to content

Commit

Permalink
mac ci debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ladnir committed Feb 27, 2025
1 parent 28c7cb5 commit 54bcd80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libOTe/Dpf/RegularDpf.h
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ namespace osuCrypto
{
SIMD8(q, temp[q] = currentSeed[j][k + q] ^ (parentTag[k + q] & sigma[j][k + q]));
SIMD8(q, tag[j][k + q] = tagBit(temp[q]));
SIMD8(q, currentSeed[j][k + q] = AES::roundFn(temp[q], temp[q]));
SIMD8(q, currentSeed[j][k + q] = AES::roundEnc(temp[q], temp[q]));
SIMD8(q, diff[k + q] ^= currentSeed[j][k + q]);
}
}
Expand All @@ -564,8 +564,8 @@ namespace osuCrypto
tag[j][k] = tagBit(temp[0]);


//auto rr = AES::roundFn(temp[0], temp[0]);
auto rr = temp[0];
auto rr = AES::roundEnc(temp[0], temp[0]);
//auto rr = temp[0];
diff[k] ^= rr;

std::cout << "p " << mPartyIdx << " k " << k << " j " << j << " leaf " << rr << " " << temp[0] << std::endl;
Expand Down

0 comments on commit 54bcd80

Please sign in to comment.