Just wanted to know if it is possible for us to perform some operations on rotated ciphertexts such that only part of the ciphertext takes part in the operation and not the whole object. Let's say we want only the slot_count/2 part of the ct to take part in the operation and the latter slot_count/2 should be left as it is. Any ideas how to go about it? I am currently using the BFV scheme
Operations for rotations in ciphertext using SEAL
343 Views Asked by Nandini Malhotra At
1
There are 1 best solutions below
Related Questions in SEAL
- Goldschmidt division initialization using CKKS
- Working on SEAL Ciphertexts with multiple users
- Simple Encrypted Arithmetic Library (SEAL) how to save the ciphertext to a file
- Square Root Function for the SEAL Ciphertexts
- Setting the FractionalEncoder in SEAL 2.3.1
- How to encrypt data frame column through PySeal library
- Creating an array of Ciphertexts in Microsoft SEAL using C++
- Homomorphic encryption: Matrix Vector multiplication using PALISADE library
- Fail to install Mircosoft SEAL
- Updating PostgreSQL table with binary data
- Seeking ways to improve the calculation efficiency of Microsoft's seal library
- I can‘t understand the better GaloisKey creating with Microsoft SEAL?
- I get an error when I rotate the ciphertext vector,
- Converting .cpp file to .wasm file
- Can we multiply only specific slots in ciphertexts using Microsoft SEAL?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Since we can't really choose which slots will be rotated, the general way to achieve this is more of a workaround:
Given
seal::Ciphertext x,int stepsand appropriate evaluator/encoder and keys as in the Seal Rotation Example (including Explanations) we can do the following:seal::Ciphertext copy = x;evaluator.rotate_vector_inplace(copy, steps, galoisKeys);(assuming you're using the CKKS scheme)evaluator.add_inplace(x,copy);