Questions and discussions related to the FRESCO project (https://github.com/aicis/fresco)
SpdzResourcePool
class.
hi, thank you for your reply. I thought that I would need some kind of workaround, what i did in the end was, that i added some functions to the spdzmascotdatasupplier, which allowed me to produce a number of triples (and randomelements, etc.) beforehand.
Something like:
public void produceTriples(int el) {
ensureInitialized();
triples.addAll(mascot.getTriples(el));
}
Calling this function before the actual computation had the result, that during the online phase no triples had to be produced. Maybe something like this could be added to the main project? :)