mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
6 lines
104 B
Plaintext
6 lines
104 B
Plaintext
from oram import OptimalORAM
|
|
|
|
array = OptimalORAM(10000)
|
|
array[1] = 1
|
|
print_ln('%s', array[1].reveal())
|