You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialize array elements in ORAM tree after array declaration. In vanilla Java, array elements are initialized to 0 if they are a numeric type (int or double), false if they are of type boolean , or null if they are an object type like String. Similarly, they must also be initialized in the ORAM tree after the array is declared. Otherwise, they will not be found on later reads, contradicting the behaviour of vanilla Java, where the read would have returned the default, initial value.
2D-array support for ArrayAccessModifier. Example ORAM key for a 2D-array element: "a" + "[" + i + "]" + "[" + j + "]".
2D-array support for ArraySizeVisitor. Currently, ORAM size is an underestimate since only the first dimension of an array is counted as part of its size.
How to calculate best ORAM size if array sizes depend on user input?
Multiple sub-trees, pick random path in random tree.
Low priority: Background eviction. Perform read, return value, and perform write in the background.
Resources
Original SmithWaterman implementation
HaplotypeCaller documentation
The text was updated successfully, but these errors were encountered: