
org.factcenter.pathORam.StashFactory 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 interface StashFactory {
/**
* @param stashCapacity - number of blocks stash will hold
* @param pathORamBlocksCount - the corresponding path-o-ram size
* @param blockLenBits - data block size in bytes
*/
Stash createStash(int stashCapacity, int pathORamBlocksCount, int blockLenBits);
}