Skip to content

nhysteric/Oblivious-Shuffle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Oblivious-Shuffle

My implementation is based on this paper, with the concept of using the Almost Key-Homomorphic Pseudo-Random Function (KHPRF) for mask expansion inspired by this paper.

Dependencies

  • libOTe: Provides Oblivious Transfer (OT) functionality.

Build

git clone git@github.com:nhysteric/Oblivious-Shuffle.git --recursive
cd Oblivious-Shuffle/extern/libOTe
python build.py --all --boost --sodium --relic
cd ../..
cmake --no-warn-unused-cli -B build -S .  -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_CXX_STANDARD=20  -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build build -j

Your C++ compiler should be clang++ version 10.0.0 or higher, with support for C++20 and SIMD.

Run

# Matrix_Shuffle
build/shuffle_matrix -rows 65536 -cols 10

# Vector_Shuffle
build/shuffle_vector -rows 65536

For the sake of computational simplicity, it is required that the rows must be even.

Remind

In the Matrix Shuffle process, the KHPRF is used to expand row masks, which may occasionally introduce a one-bit error.

If you encounter the following error due to a large dataset:

build/shuffle_matrix -rows 1048576 -cols 1000

Assertion `data.size() < std::numeric_limits<u32>::max()` failed.
  src location: extern/libOTe/out/coproto/coproto/../coproto/Socket/SocketScheduler.h:1016
  function: macoro::task<void> coproto::internal::SockScheduler::makeSendTask(Sock *) [Sock = coproto::detail::AsioSocket<>::Sock]
terminate called without an active exception
[1]    228797 abort (core dumped)  build/shuffle_matrix -rows 1048576 -cols 1000

You can try modifying u32 to u64 in the following lines and then recompile libOTe and this project:

  • extern/libOTe/out/coproto/coproto/Socket/SocketScheduler.h:55
  • extern/libOTe/out/coproto/coproto/Socket/SocketScheduler.h:1016
  • extern/libOTe/out/coproto/coproto/Socket/SocketScheduler.h:1046

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published