Bytecode transformations to produce data-oblivious code
Project description
oblif
See documentation here!
Oblif is a library that lets you write data-oblivious code in a non-data-oblivious way. For example:
from mpyc.runtime import mpc
def test(x):
return 1 if x==5 else 0
mpc.run(mpc.start())
print("test(5) is", mpc.run(mpc.output(test(type(5)))))
mpc.run(mpc.shutdown())
2021-05-08 13:56:22,858 Start MPyC runtime v0.7.4
Traceback (most recent call last):
File "test-mpyc.py", line 14, in <module>
print("test(5) is", mpc.run(mpc.output(test(type(5)))))
File "test-mpyc.py", line 6, in test
return 1 if x==5 else 0
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/mpyc-0.7.4-py3.8.egg/mpyc/sectypes.py", line 50, in __bool__
TypeError: cannot use secure type in Boolean expressions
But
from mpyc.runtime import mpc
from oblif.decorator import oblif
@oblif
def test(x):
return 1 if x==5 else 0
mpc.run(mpc.start())
type=mpc.SecInt()
type.ifelse = lambda self, ifval, elseval: ifval if ifval is elseval else mpc.if_else(self, ifval, elseval)
type.__deepcopy__ = lambda self, memo: self
print("test(5) is", mpc.run(mpc.output(test(type(5)))))
mpc.run(mpc.shutdown())
gives
2021-05-08 13:58:47,387 Start MPyC runtime v0.7.4
test(5) is 1
2021-05-08 13:58:47,394 Stop MPyC runtime -- elapsed time: 0:00:00.006167
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
oblif-0.3.1-py3-none-any.whl
(10.1 kB
view details)
File details
Details for the file oblif-0.3.1-py3-none-any.whl.
File metadata
- Download URL: oblif-0.3.1-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4386cb8b395873801bc63657b59785e30977e98d08849d737ba55c781e836af6
|
|
| MD5 |
92534c5fac9c4acbceb8887f41aa3c4a
|
|
| BLAKE2b-256 |
ab8b60efe18580864d8da2c65ab5fd2df4fa5927793695418a24ca835a019f35
|