
org.factcenter.pathORam.LocalServerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inchworm Show documentation
Show all versions of inchworm Show documentation
Secure computation, one step at a time.
The newest version!
package org.factcenter.pathORam;
public class LocalServerFactory implements ServerFactory
{
private int bucketSize;
public LocalServerFactory(int bucketSize)
{
this.bucketSize = bucketSize;
}
@Override
public PathORamServer createPathORamServer(int blocksCount, int blockSize) {
return new LocalServer(blocksCount, blockSize, bucketSize);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy