PyORAm
authorAli Younis <ayounis@uci.edu>
Wed, 17 May 2017 02:43:50 +0000 (19:43 -0700)
committerAli Younis <ayounis@uci.edu>
Wed, 17 May 2017 02:43:50 +0000 (19:43 -0700)
commit94177d594aa9ce08f05c7e7b44e5ca90c63a8cf6
tree850b1878e67303450551f2fbc8a96f81acf44349
parent0ff7f37c96339ab80c68452113b94e1074284bde
PyORAm
79 files changed:
PyORAM/.appveyor.yml [new file with mode: 0644]
PyORAM/.gitignore [new file with mode: 0644]
PyORAM/.travis.yml [new file with mode: 0644]
PyORAM/.travis_before_install_jython.sh [new file with mode: 0644]
PyORAM/CHANGELOG.rst [new file with mode: 0644]
PyORAM/LICENSE.md [new file with mode: 0644]
PyORAM/MANIFEST.in [new file with mode: 0644]
PyORAM/Makefile [new file with mode: 0644]
PyORAM/README.rst [new file with mode: 0644]
PyORAM/examples/aesctr_performance.py [new file with mode: 0644]
PyORAM/examples/ali.py [new file with mode: 0644]
PyORAM/examples/encrypted_heap_test.py [new file with mode: 0644]
PyORAM/examples/encrypted_storage_file.py [new file with mode: 0644]
PyORAM/examples/encrypted_storage_mmap.py [new file with mode: 0644]
PyORAM/examples/encrypted_storage_ram.py [new file with mode: 0644]
PyORAM/examples/encrypted_storage_s3.py [new file with mode: 0644]
PyORAM/examples/encrypted_storage_sftp.py [new file with mode: 0644]
PyORAM/examples/path_oram_file.py [new file with mode: 0644]
PyORAM/examples/path_oram_mmap.py [new file with mode: 0644]
PyORAM/examples/path_oram_ram.py [new file with mode: 0644]
PyORAM/examples/path_oram_s3.py [new file with mode: 0644]
PyORAM/examples/path_oram_sftp.py [new file with mode: 0644]
PyORAM/examples/path_oram_sftp_setup.py [new file with mode: 0644]
PyORAM/examples/path_oram_sftp_test.py [new file with mode: 0644]
PyORAM/examples/tree_oram_test.py [new file with mode: 0644]
PyORAM/requirements.txt [new file with mode: 0644]
PyORAM/setup.cfg [new file with mode: 0644]
PyORAM/setup.py [new file with mode: 0644]
PyORAM/src/_cffi_src/__init__.py [new file with mode: 0644]
PyORAM/src/_cffi_src/virtual_heap_helper_build.py [new file with mode: 0644]
PyORAM/src/pyoram/__about__.py [new file with mode: 0644]
PyORAM/src/pyoram/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/crypto/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/crypto/aes.py [new file with mode: 0644]
PyORAM/src/pyoram/encrypted_storage/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/encrypted_storage/encrypted_block_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/encrypted_storage/encrypted_heap_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/encrypted_storage/top_cached_encrypted_heap_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/oblivious_storage/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/oblivious_storage/tree/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/oblivious_storage/tree/path_oram.py [new file with mode: 0644]
PyORAM/src/pyoram/oblivious_storage/tree/tree_oram_helper.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/AliTimer.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/block_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/block_storage_file.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/block_storage_mmap.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/block_storage_ram.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/block_storage_s3.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/block_storage_sftp.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/boto3_s3_wrapper.py [new file with mode: 0644]
PyORAM/src/pyoram/storage/heap_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/exists.empty [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k200_h0_b1.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k200_h0_b1_data.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k2_h3_b1.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k2_h3_b1_data.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k2_h3_b2.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k2_h3_b2_data.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k3_h3_b1.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k3_h3_b1_data.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k3_h3_b2.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/baselines/k3_h3_b2_data.dot [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_aes.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_block_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_encrypted_block_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_encrypted_heap_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_examples.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_heap_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_misc.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_package.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_path_oram.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_top_cached_encrypted_heap_storage.py [new file with mode: 0644]
PyORAM/src/pyoram/tests/test_virtual_heap.py [new file with mode: 0644]
PyORAM/src/pyoram/util/__init__.py [new file with mode: 0644]
PyORAM/src/pyoram/util/misc.py [new file with mode: 0644]
PyORAM/src/pyoram/util/virtual_heap.py [new file with mode: 0644]
version2/src/java/light_fan_embed_benchmark/Sensor.java