Skip to content

Commit

Permalink
removed todos according to technical committee discussion
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMct committed Feb 5, 2025
1 parent b458fea commit 764d238
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/multiparty/int_pir/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func main() {
for i := range P {
P[i].tsk = thresholdizer.AllocateThresholdSecretShare()
for j := range P {
err := thresholdizer.AggregateShares(tskShares[j][i], P[i].tsk, &P[i].tsk) // TODO wierd pointer arguments
err := thresholdizer.AggregateShares(tskShares[j][i], P[i].tsk, &P[i].tsk)
check(err)
}
}
Expand Down Expand Up @@ -320,7 +320,7 @@ func execCKGProtocol(params bgv.Parameters, crs sampling.PRNG, participants []pa
elapsedCKGParty = runTimedParty(func() {
for i, pi := range participants {
// Generate the t-out-of-t secret key of the party within the group of participants
err := pi.Combiner.GenAdditiveShare(getShamirPoints(participants), pi.shamirPt, pi.tsk, tsks[i]) // TODO: discuss returning the key directly
err := pi.Combiner.GenAdditiveShare(getShamirPoints(participants), pi.shamirPt, pi.tsk, tsks[i])
check(err)

// Generate the public key share of the party from the t-out-of-t secret key
Expand Down
1 change: 0 additions & 1 deletion examples/multiparty/int_psi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
// 5. Decryption: The target party decrypts the result with its secret key.
//
// [Multiparty Homomorphic Encryption from Ring-Learning-With-Errors]: https://eprint.iacr.org/2020/304
// TODO: do we want a README version of this docstring ?
package main

import (
Expand Down

0 comments on commit 764d238

Please sign in to comment.