mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-05-13 03:00:24 -04:00
8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
# (C) 2016 University of Bristol. See License.txt
|
|
|
|
from path_oram import OptimalORAM
|
|
|
|
array = OptimalORAM(10000)
|
|
array[1] = 1
|
|
print_ln('%s', array[1].reveal())
|