Efficient Arithmetic-and-Comparison Homomorphic Encryption with Space Switching
Pith reviewed 2026-05-10 01:55 UTC · model grok-4.3
The pith
Space switching lets a single homomorphic encryption scheme handle both arithmetic and comparison operations continuously.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper claims that space switching integrates arithmetic and comparison computation seamlessly within FV-style schemes. The method works by noting that the two operation types need different plaintext spaces and by introducing a reduction step to move from the number space to the digit space plus a modulus-raising step to map results back, allowing continuous evaluation of both operation types inside the same scheme.
What carries the argument
Space switching, which consists of a reduction step from the number space to the digit space followed by a modulus-raising step to return to the original space.
If this is right
- Arithmetic and comparison operations can be evaluated continuously inside one scheme without changing encryption parameters mid-computation.
- Mixed workloads such as database queries run up to 17 times faster than when using scheme switching.
- The same workloads run up to 15 times faster than when using direct comparison methods.
- Accuracy-sensitive tasks avoid errors near critical points that appear in polynomial approximation approaches.
- The design supports practical privacy-preserving computation on real-world data sets.
Where Pith is reading between the lines
- The same space-transition idea could be tested in other homomorphic schemes that rely on modular arithmetic.
- It may simplify building larger privacy-preserving systems that combine calculations with conditional decisions.
- Further tuning of the transition steps could produce even larger speed gains when data sizes grow.
Load-bearing premise
The steps that move encrypted values between a large number space and a small digit space can be carried out efficiently and correctly without weakening security or adding too much extra work.
What would settle it
Run the reduction and modulus-raising steps on actual encrypted data for mixed arithmetic-plus-comparison tasks, then measure total runtime, result correctness, and security level against the claimed speedups over scheme switching.
Figures
read the original abstract
Fully homomorphic encryption (FHE) enables computation on encrypted data without decryption, making it central to privacy-preserving applications. However, no existing scheme efficiently supports both arithmetic and comparison operations in a unified framework. Prior approaches such as scheme switching and polynomial approximation face serious limitations: switching incurs prohibitive overhead for large inputs, while approximation methods introduce errors near critical points, restricting use in accuracy-sensitive tasks. We propose space switching method to integrate arithmetic and comparison computation seamlessly within FV-style schemes. Our approach identifies that the two types of operations require different plaintext spaces and introduces two procedures: a reduction step to transition from the number space $\mathbb{Z}_{p^r}$ to the digit space $\mathbb{Z}_{p}$, and a modulus-raising step to map results back to $\mathbb{Z}_{p^r}$. This design enables continuous evaluation of arithmetic and comparison within the same scheme. Experiments show that our method achieves up to $17\times$ faster performance than scheme switching and $15\times$ faster than direct comparison on database workloads, demonstrating its practicality for real-world privacy-preserving computation. Code and artifacts are available at https://github.com/UCF-Lou-Lab-PET/Universal-BGV.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper claims to introduce a 'space switching' method within FV/BGV-style homomorphic encryption that integrates arithmetic operations over Z_{p^r} and comparison operations over Z_p via two new homomorphic procedures (reduction from Z_{p^r} to Z_p followed by modulus raising back to Z_{p^r}), enabling continuous mixed computation in a single scheme without scheme switching or polynomial approximations, and reports up to 17x speedups over scheme switching and 15x over direct comparison on database workloads, with code released.
Significance. If the reduction and modulus-raising steps can be realized homomorphically with controlled noise growth and without compromising semantic security, the result would be significant for practical FHE deployments requiring mixed arithmetic and comparisons (e.g., secure databases or decision trees), as it avoids the overhead of scheme switching and the accuracy issues of approximations. The public code and artifacts are a positive contribution that supports reproducibility.
major comments (3)
- [Space switching method] The description of the space switching method (reduction Z_{p^r} to Z_p and modulus-raising): the manuscript provides no explicit noise-growth analysis, circuit depth, or homomorphic implementation details for these steps. This is load-bearing for the central claim of 'seamless continuous evaluation' and the reported speedups, as non-trivial circuits would consume the noise budget and require bootstrapping.
- [Experimental evaluation] Experimental results section: the 17x and 15x speedup claims are reported without accompanying noise budgets, bootstrapping frequency, exact parameter sets (e.g., p, r, security level), or circuit sizes for the new procedures. This prevents verification that the speedups are achieved under standard FV noise constraints rather than idealized conditions.
- [Security discussion] Security analysis: no reduction or argument is given showing that the new reduction and raising maps preserve semantic security of the underlying FV scheme. Since these maps are custom and not native operations, this is required to support the claim that the approach does not weaken security.
minor comments (2)
- [Introduction] Notation for plaintext spaces (Z_{p^r} vs. Z_p) is introduced without a small concrete example early in the paper; adding one would improve readability for readers unfamiliar with digit decomposition.
- [Abstract] The abstract states 'continuous evaluation of arithmetic and comparison within the same scheme' but does not define what 'continuous' precisely means in terms of circuit depth or number of operations before noise exhaustion.
Simulated Author's Rebuttal
We thank the referee for the careful review and valuable comments, which will help strengthen the manuscript. We address each major comment below and will revise the paper accordingly to provide the requested details and analysis.
read point-by-point responses
-
Referee: [Space switching method] The description of the space switching method (reduction Z_{p^r} to Z_p and modulus-raising): the manuscript provides no explicit noise-growth analysis, circuit depth, or homomorphic implementation details for these steps. This is load-bearing for the central claim of 'seamless continuous evaluation' and the reported speedups, as non-trivial circuits would consume the noise budget and require bootstrapping.
Authors: We agree that the current manuscript would benefit from a more explicit treatment of these aspects. In the revision, we will add a dedicated subsection detailing the homomorphic implementations of the reduction and modulus-raising procedures, their circuit depths, and a noise-growth analysis under the standard FV noise model. This will confirm that the operations support the claimed seamless continuous evaluation within the available noise budget without requiring bootstrapping for the evaluated workloads. revision: yes
-
Referee: [Experimental evaluation] Experimental results section: the 17x and 15x speedup claims are reported without accompanying noise budgets, bootstrapping frequency, exact parameter sets (e.g., p, r, security level), or circuit sizes for the new procedures. This prevents verification that the speedups are achieved under standard FV noise constraints rather than idealized conditions.
Authors: We acknowledge that additional parameters and metrics are needed for full verification. In the revised experimental section, we will report the exact parameter sets (including p, r, and security level), noise budgets, bootstrapping frequency, and circuit sizes for the space switching procedures. The reported speedups were obtained under standard FV constraints with these settings, and we will include summary tables to facilitate independent checks. revision: yes
-
Referee: [Security discussion] Security analysis: no reduction or argument is given showing that the new reduction and raising maps preserve semantic security of the underlying FV scheme. Since these maps are custom and not native operations, this is required to support the claim that the approach does not weaken security.
Authors: We thank the referee for highlighting this point. In the revision, we will include a security argument showing that the reduction and raising maps are deterministic functions on the plaintext space that are evaluated using the native homomorphic operations of the FV scheme. Semantic security is therefore preserved by reduction to the semantic security of FV (based on ring-LWE), with no additional assumptions or leakage introduced. revision: yes
Circularity Check
No circularity detected in space switching construction
full rationale
The paper's core contribution is a novel construction that defines reduction from Z_{p^r} to Z_p and the corresponding modulus-raising map as explicit procedures inside an FV/BGV scheme. These maps are presented as the authors' design choice, not derived from or equivalent to any fitted parameter or prior result by construction. Performance claims rest on experimental measurements rather than statistical predictions or self-referential equations. No load-bearing step invokes a self-citation chain, uniqueness theorem from the same authors, or renaming of an existing empirical pattern. The derivation chain therefore remains independent of its own inputs.
Axiom & Free-Parameter Ledger
axioms (1)
- domain assumption The plaintext spaces for arithmetic and comparison operations in FV-style schemes are distinct (Z_{p^r} vs Z_p)
invented entities (1)
-
Space switching
no independent evidence
Reference graph
Works this paper leans on
-
[1]
Openfhe: Open-source fully homomorphic encryption library
Ahmad Al Badawi, Jack Bates, Flavio Bergamaschi, David Bruce Cousins, Saroja Erabelli, Nicholas Genise, Shai Halevi, Hamish Hunt, Andrey Kim, Yongwoo Lee, Zeyu Liu, Daniele Micciancio, Ian Quah, Yuriy Polyakov, Saraswathy R.V ., Kurt Rohloff, Jonathan Saylor, Dmitriy Suponitsky, Matthew Triplett, Vinod Vaikuntanathan, and Vincent Zucca. Openfhe: Open-sour...
work page 2022
-
[2]
Albrecht, Rachel Player, and Sam Scott
Martin R. Albrecht, Rachel Player, and Sam Scott. On the concrete hardness of learning with errors.J. Math. Cryptol., 9(3):169–203, 2015
work page 2015
-
[3]
General functional bootstrapping using ckks
Andreea Alexandru, Andrey Kim, and Yuriy Polyakov. General functional bootstrapping using ckks. InAdvances in Cryptology – CRYPTO 2025: 45th Annual International Cryptology Conference, Santa Barbara, CA, USA, August 17–21, 2025, Proceedings, Part III, page 304–337, Berlin, Heidelberg, 2025. Springer-Verlag
work page 2025
-
[4]
Frederik Armknecht, Colin Boyd, Christopher Carr, Kristian Gjøsteen, Angela J ¨aschke, Christian A. Reuter, and Martin Strand. A guide to fully homomorphic encryption.IACR Cryptol. ePrint Arch., page 1192, 2015
work page 2015
-
[5]
Ahmad Al Badawi, Jack Bates, Fl ´avio Bergamaschi, David Bruce Cousins, Saroja Erabelli, Nicholas Genise, Shai Halevi, Hamish Hunt, Andrey Kim, Yongwoo Lee, Zeyu Liu, Daniele Micciancio, Ian Quah, Yuriy Polyakov, R. V . Saraswathy, Kurt Rohloff, Jonathan Saylor, Dmitriy Suponitsky, Matthew Triplett, Vinod Vaikuntanathan, and Vincent Zucca. Openfhe: Open-s...
work page 2022
-
[6]
Song Bian, Zhou Zhang, Haowen Pan, Ran Mao, Zian Zhao, Yier Jin, and Zhenyu Guan. He3db: An efficient and elastic encrypted database via arithmetic-and-logic fully homomorphic encryption. In Proceedings of the 2023 ACM SIGSAC Conference on Computer and Communications Security, CCS ’23, page 2930–2944, New York, NY , USA, 2023. Association for Computing Machinery
work page 2023
-
[7]
Dan Boneh, Craig Gentry, Shai Halevi, Frank Wang, and David J. Wu. Private database queries using somewhat homomorphic encryption. In Michael Jacobson, Michael Locasto, Payman Mohassel, and Reihaneh Safavi-Naini, editors,Applied Cryptography and Network Security, pages 102–118, Berlin, Heidelberg, 2013. Springer Berlin Heidelberg
work page 2013
-
[8]
CHIMERA: combining ring-lwe-based fully homomorphic encryption schemes.J
Christina Boura, Nicolas Gama, Mariya Georgieva, and Dimitar Jetchev. CHIMERA: combining ring-lwe-based fully homomorphic encryption schemes.J. Math. Cryptol., 14(1):316–338, 2020
work page 2020
-
[9]
Fully homomorphic encryption without modulus switching from classical gapsvp
Zvika Brakerski. Fully homomorphic encryption without modulus switching from classical gapsvp. InCRYPTO, volume 7417, pages 868–886. Springer, 2012
work page 2012
-
[10]
(leveled) fully homomorphic encryption without bootstrapping.ACM Trans
Zvika Brakerski, Craig Gentry, and Vinod Vaikuntanathan. (leveled) fully homomorphic encryption without bootstrapping.ACM Trans. Comput. Theory, 6(3):13:1–13:36, 2014
work page 2014
-
[11]
Efficient and accurate homo- morphic comparisons
Olive Chakraborty and Martin Zuber. Efficient and accurate homo- morphic comparisons. InWAHC@CCS, pages 35–46. ACM, 2022
work page 2022
-
[12]
Homomorphic lower digits removal and improved FHE bootstrapping
Hao Chen and Kyoohyung Han. Homomorphic lower digits removal and improved FHE bootstrapping. InEUROCRYPT (1), volume 10820, pages 315–337. Springer, 2018
work page 2018
-
[13]
Simple encrypted arithmetic library v2
Hao Chen, Kyoohyung Han, Zhicong Huang, Amir Jalali, and Kim Laine. Simple encrypted arithmetic library v2. 3.0.Microsoft Research, December, 13, 2017
work page 2017
-
[14]
Tree- based lookup table on batched encrypted queries using homomorphic encryption.IACR Cryptol
Jung Hee Cheon, Hyeongmin Choe, and Jai Hyun Park. Tree- based lookup table on batched encrypted queries using homomorphic encryption.IACR Cryptol. ePrint Arch., page 87, 2024
work page 2024
-
[15]
Homomorphic encryption for arithmetic of approximate numbers
Jung Hee Cheon, Andrey Kim, Miran Kim, and Yong Soo Song. Homomorphic encryption for arithmetic of approximate numbers. In ASIACRYPT (1), volume 10624, pages 409–437. Springer, 2017
work page 2017
-
[16]
Efficient homomorphic comparison methods with optimal complexity
Jung Hee Cheon, Dongwoo Kim, and Duhyeong Kim. Efficient homomorphic comparison methods with optimal complexity. In ASIACRYPT (2), volume 12492, pages 221–256. Springer, 2020
work page 2020
-
[17]
Numerical method for comparison on homomorphically encrypted numbers
Jung Hee Cheon, Dongwoo Kim, Duhyeong Kim, Hun-Hee Lee, and Keewoo Lee. Numerical method for comparison on homomorphically encrypted numbers. InASIACRYPT (2), volume 11922, pages 415–
-
[18]
Efficient ho- momorphic evaluation on large intervals.IEEE Trans
Jung Hee Cheon, Wootae Kim, and Jai Hyun Park. Efficient ho- momorphic evaluation on large intervals.IEEE Trans. Inf. Forensics Secur., 17:2553–2568, 2022
work page 2022
-
[19]
TFHE: fast fully homomorphic encryption over the torus
Ilaria Chillotti, Nicolas Gama, Mariya Georgieva, and Malika Iz- abach`ene. TFHE: fast fully homomorphic encryption over the torus. J. Cryptol., 33(1):34–91, 2020
work page 2020
-
[20]
FHEW: bootstrapping homomor- phic encryption in less than a second
L ´eo Ducas and Daniele Micciancio. FHEW: bootstrapping homomor- phic encryption in less than a second. InEUROCRYPT (1), volume 9056, pages 617–640. Springer, 2015
work page 2015
-
[21]
Somewhat practical fully homomorphic encryption.IACR Cryptol
Junfeng Fan and Frederik Vercauteren. Somewhat practical fully homomorphic encryption.IACR Cryptol. ePrint Arch., page 144, 2012
work page 2012
-
[22]
Bo Feng, Qian Lou, Lei Jiang, and Geoffrey C Fox. Cryptogru: Low latency privacy-preserving text analysis with gru.arXiv preprint arXiv:2010.11796, 2020
-
[23]
On polynomial functions modulo p e and faster bootstrapping for homomorphic encryption
Robin Geelen, Ilia Iliashenko, Jiayi Kang, and Frederik Vercauteren. On polynomial functions modulo p e and faster bootstrapping for homomorphic encryption. InEUROCRYPT (3), volume 14006, pages 257–286. Springer, 2023
work page 2023
-
[24]
Bootstrapping for bgv and bfv revisited.Journal of Cryptology, 36(2):12, 2023
Robin Geelen and Frederik Vercauteren. Bootstrapping for bgv and bfv revisited.Journal of Cryptology, 36(2):12, 2023
work page 2023
-
[25]
Fully homomorphic encryption using ideal lattices
Craig Gentry. Fully homomorphic encryption using ideal lattices. In STOC, pages 169–178. ACM, 2009
work page 2009
-
[26]
Craig Gentry, Shai Halevi, and Nigel P. Smart. Better bootstrapping in fully homomorphic encryption. InPublic Key Cryptography, volume 7293, pages 1–16. Springer, 2012
work page 2012
-
[27]
Craig Gentry, Shai Halevi, and Nigel P. Smart. Fully homomor- phic encryption with polylog overhead. In David Pointcheval and Thomas Johansson, editors,Advances in Cryptology - EUROCRYPT 2012, volume 7237, pages 465–482, Germany, 2012. Springer Berlin Heidelberg
work page 2012
-
[28]
Cryptonets: Applying neural networks to encrypted data with high throughput and accuracy
Ran Gilad-Bachrach, Nathan Dowlin, Kim Laine, Kristin Lauter, Michael Naehrig, and John Wernsing. Cryptonets: Applying neural networks to encrypted data with high throughput and accuracy. InIn- ternational conference on machine learning, pages 201–210. PMLR, 2016
work page 2016
-
[29]
Design and implementation of HElib: a homomorphic encryption library
Shai Halevi and Victor Shoup. Design and implementation of HElib: a homomorphic encryption library. Cryptology ePrint Archive, Paper 2020/1481, 2020
work page 2020
-
[30]
Shai Halevi and Victor Shoup. Bootstrapping for helib.J. Cryptol., 34(1):7, 2021
work page 2021
-
[31]
Logistic regression on homomorphic encrypted data at scale
Kyoohyung Han, Seungwan Hong, Jung Hee Cheon, and Daejun Park. Logistic regression on homomorphic encrypted data at scale. InAAAI, pages 9466–9471. AAAI Press, 2019
work page 2019
-
[32]
Integer func- tions suitable for homomorphic encryption over finite fields
Ilia Iliashenko, Christophe N `egre, and Vincent Zucca. Integer func- tions suitable for homomorphic encryption over finite fields. In WAHC@CCS, pages 1–10. W AHC@ACM, 2021
work page 2021
-
[33]
Faster homomorphic comparison operations for BGV and BFV.Proc
Ilia Iliashenko and Vincent Zucca. Faster homomorphic comparison operations for BGV and BFV.Proc. Priv. Enhancing Technol., 2021(3):246–264, 2021
work page 2021
-
[34]
Matcha: A fast and energy- efficient accelerator for fully homomorphic encryption over the torus
Lei Jiang, Qian Lou, and Nrushad Joshi. Matcha: A fast and energy- efficient accelerator for fully homomorphic encryption over the torus. InThe Design Automation Conference (DAC 2022), 2022
work page 2022
-
[35]
Miran Kim and Kristin E. Lauter. Private genome analysis through homomorphic encryption.BMC Medical Informatics Decis. Mak., 15-S(5):S3, 2015
work page 2015
-
[36]
Better security for queries on encrypted databases
Myungsun Kim, Hyung Tae Lee, San Ling, Shu Qin Ren, Benjamin Hong Meng Tan, and Huaxiong Wang. Better security for queries on encrypted databases. Cryptology ePrint Archive, Paper 2016/470, 2016
work page 2016
-
[37]
On the efficiency of fhe-based private queries.IEEE Trans
Myungsun Kim, Hyung Tae Lee, San Ling, and Huaxiong Wang. On the efficiency of fhe-based private queries.IEEE Trans. Dependable Secur. Comput., 15(2):357–363, 2018
work page 2018
-
[38]
Functional bootstrapping for packed ciphertexts via homomorphic lut evaluation
Dongwon Lee, Seonhong Min, and Yongsoo Song. Functional bootstrapping for packed ciphertexts via homomorphic lut evaluation. Cryptology ePrint Archive, 2024
work page 2024
-
[39]
Minimax approximation of sign function by composite polynomial for homomorphic comparison.IEEE Trans
Eunsang Lee, Joon-Woo Lee, Jong-Seon No, and Young-Sik Kim. Minimax approximation of sign function by composite polynomial for homomorphic comparison.IEEE Trans. Dependable Secur. Comput., 19(6):3711–3727, 2022
work page 2022
-
[40]
Amortized functional bootstrapping in less than 7 ms, with ˜O(1)polynomial multiplications
Zeyu Liu and Yunhao Wang. Amortized functional bootstrapping in less than 7 ms, with ˜O(1)polynomial multiplications. In Jian Guo and Ron Steinfeld, editors,Advances in Cryptology – ASIACRYPT 2023, pages 101–132, Singapore, 2023. Springer Nature Singapore
work page 2023
-
[41]
Glyph: Fast and accurately training deep neural networks on encrypted data
Qian Lou, Bo Feng, Geoffrey Charles Fox, and Lei Jiang. Glyph: Fast and accurately training deep neural networks on encrypted data. Advances in neural information processing systems, 33:9193–9202, 2020
work page 2020
-
[42]
Qian Lou, Bo Feng, Geoffrey C Fox, and Lei Jiang. Glyph: Fast and accurately training deep neural networks on encrypted data.NeurIPS 2020 (Advances in Neural Information Processing Systems), 2019
work page 2020
-
[43]
She: A fast and accurate deep neural network for encrypted data
Qian Lou and Lei Jiang. She: A fast and accurate deep neural network for encrypted data. In H. Wallach, H. Larochelle, A. Beygelzimer, F. d'Alch´e-Buc, E. Fox, and R. Garnett, editors,Advances in Neural Information Processing Systems, volume 32. Curran Associates, Inc., 2019
work page 2019
-
[44]
She: A fast and accurate deep neural network for encrypted data
Qian Lou and Lei Jiang. She: A fast and accurate deep neural network for encrypted data. InAdvances in Neural Information Processing Systems (NeurIPS) 2019, pages 10035–10043, 2019
work page 2019
-
[45]
Qian Lou and Lei Jiang. Hemet: A homomorphic-encryption-friendly privacy-preserving mobile neural network architecture.ICML 2021, 2021
work page 2021
-
[46]
Qian Lou, Wen-jie Lu, Cheng Hong, and Lei Jiang. Falcon: Fast spectral inference on encrypted data.NeurIPS 2020 (Advances in Neural Information Processing Systems), 33, 2020
work page 2020
-
[47]
Safenet: A secure, accurate and fast neural network inference
Qian Lou, Yilin Shen, Hongxia Jin, and Lei Jiang. Safenet: A secure, accurate and fast neural network inference. InInternational Conference on Learning Representations, 2021
work page 2021
-
[48]
PEGASUS: bridging polynomial and non-polynomial evaluations in homomorphic encryption
Wen-jie Lu, Zhicong Huang, Cheng Hong, Yiping Ma, and Hunter Qu. PEGASUS: bridging polynomial and non-polynomial evaluations in homomorphic encryption. InSP, pages 1057–1073. IEEE, 2021
work page 2021
-
[49]
Non-interactive and output expressive private comparison from homomorphic encryption
Wenjie Lu, Jun-Jie Zhou, and Jun Sakuma. Non-interactive and output expressive private comparison from homomorphic encryption. InAsiaCCS, pages 67–74. ACM, 2018
work page 2018
-
[50]
Accelerating polynomial evaluation for integer-wise homomorphic comparison and division.J
Koki Morimura, Daisuke Maeda, and Takashi Nishide. Accelerating polynomial evaluation for integer-wise homomorphic comparison and division.J. Inf. Process., 31:288–298, 2023
work page 2023
-
[51]
Mike Paterson and Larry J. Stockmeyer. On the number of nonscalar multiplications necessary to evaluate polynomials.SIAM J. Comput., 2(1):60–66, 1973
work page 1973
-
[52]
Jean Louis Raisaro, Gwangbae Choi, Sylvain Pradervand, Raphael Colsenet, Nathalie Jacquemont, Nicolas Rosat, Vincent Mooser, and Jean-Pierre Hubaux. Protecting privacy and security of genomic data in i2b2 with homomorphic encryption and differential privacy.IEEE ACM Trans. Comput. Biol. Bioinform., 15(5):1413–1426, 2018
work page 2018
-
[53]
Ntl: A library for doing number theory
Victor Shoup et al. Ntl: A library for doing number theory. 2001
work page 2001
-
[54]
Smart and Frederik Vercauteren
Nigel P. Smart and Frederik Vercauteren. Fully homomorphic SIMD operations.Des. Codes Cryptogr., 71(1):57–81, 2014
work page 2014
-
[55]
Benjamin Hong Meng Tan, Hyung Tae Lee, Huaxiong Wang, Shu Qin Ren, and Khin Mi Mi Aung. Efficient private comparison queries over encrypted databases using fully homomorphic encryption with finite fields.IEEE Trans. Dependable Secur. Comput., 18(6):2861–2874, 2021
work page 2021
-
[56]
Tpc benchmark tm h standard specification
Transaction Processing Performance Council. Tpc benchmark tm h standard specification. Technical report, Transaction Processing Performance Council, San Francisco, CA, 2022
work page 2022
-
[57]
Jiaqi Xue, Xin Xin, Wei Zhang, Mengxin Zheng, Qianqian Song, Minxuan Zhou, Yushun Dong, Dongjie Wang, Xun Chen, Jiafeng Xie, et al. Sok: Can fully homomorphic encryption support general ai computation? a functional and cost analysis.PoPETs 2026, 2026
work page 2026
-
[58]
Ardhi Wiratama Baskara Yudha, Jiaqi Xue, Qian Lou, Huiyang Zhou, and Yan Solihin. Boostcom: Towards efficient universal fully homomorphic encryption by boosting the word-wise comparisons. In (PACT’24) The International Conference on Parallel Architectures and Compilation Techniques (PACT), 2024
work page 2024
-
[59]
Hebridge: Connecting arithmetic and logic operations in fv-style he schemes
Yancheng Zhang, Xun Chen, and Qian Lou. Hebridge: Connecting arithmetic and logic operations in fv-style he schemes. InProceedings of the 12th Workshop on Encrypted Computing & Applied Homomor- phic Cryptography, pages 23–35, 2023
work page 2023
-
[60]
Yancheng Zhang, Jiaqi Xue, Mengxin Zheng, Mimi Xie, Mingzhe Zhang, Lei Jiang, and Qian Lou. Cipherprune: Efficient and scalable private transformer inference.arXiv preprint arXiv:2502.16782, 2025
-
[61]
Yancheng Zhang, Mengxin Zheng, Yuzhang Shang, Xun Chen, and Qian Lou. Heprune: Fast private training of deep neural networks with encrypted data pruning.Advances in Neural Information Processing Systems, 37:51063–51084, 2024
work page 2024
-
[62]
Yuchen Zhang, Wenrui Dai, Xiaoqian Jiang, Hongkai Xiong, and Shuang Wang. FORESEE: fully outsourced secure genome study based on homomorphic encryption.BMC Medical Informatics Decis. Mak., 15-S(5):S5, 2015. Appendix A. Meta-Review The following meta-review was prepared by the program committee for the 2026 IEEE Symposium on Security and Privacy (S&P) as p...
work page 2015
-
[63]
Efficiently combining arithmetic and comparison operations within a single FHE scheme is a well- known problem. Prior approaches either require expensive scheme switching between different FHE schemes or rely on polynomial approximations that sacrifice exactness. This paper presents a principled approach that avoids both limitations, achieving up to 15×sp...
-
[64]
The paper repurposes digit decomposition tech- niques, previously used only in BFV/BGV boot- strapping, as a general-purpose tool for bridging arithmetic and comparison within a single scheme. While the underlying digit extraction algorithms build on prior bootstrapping literature, the concep- tual insight that these techniques can be applied cost-effecti...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.