Fix bug in packed ORAM.

This commit is contained in:
Marcel Keller
2025-04-02 13:44:01 +11:00
parent f051dc7222
commit 4675cba4e7

View File

@@ -1790,7 +1790,7 @@ class AtLeastOneRecursionPackedORAMWithEmpty(PackedORAMWithEmpty):
storage = RecursiveORAM
class OptimalPackedORAMWithEmpty(PackedORAMWithEmpty):
storage = OptimalORAM
storage = staticmethod(OptimalORAM)
def test_oram(oram_type, N, value_type=sint, iterations=100):
stop_grind()