mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 21:48:11 -05: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())
|