Inferensys

Glossary

FHE-Based PSI

A private set intersection construction that leverages fully homomorphic encryption to evaluate the intersection logic directly on encrypted data, often achieving low round complexity.
Knowledge engineer constructing knowledge base on laptop, document hierarchy visible, casual office setup.
CRYPTOGRAPHIC PROTOCOL

What is FHE-Based PSI?

A private set intersection construction that leverages fully homomorphic encryption to evaluate the intersection logic directly on encrypted data, often achieving low round complexity.

FHE-Based PSI is a cryptographic protocol that enables two parties to compute the intersection of their private datasets using fully homomorphic encryption (FHE) as the core computational engine. Unlike OT-based or Diffie-Hellman-based approaches, FHE-based constructions allow one party to encrypt its set and send it to the other, who then evaluates the intersection logic—typically a polynomial representation of the set—directly on the ciphertexts without decryption, returning only the encrypted result.

The primary advantage of this approach is minimal round complexity, often requiring only a single round of communication after the encrypted set is transmitted, making it highly suitable for high-latency networks. However, the computational cost of evaluating complex circuits or polynomials on encrypted data remains significant, though recent advances in lattice-based FHE schemes and hardware acceleration are rapidly closing the efficiency gap with traditional PSI protocols.

CRYPTOGRAPHIC ARCHITECTURE

Key Features of FHE-Based PSI

Fully Homomorphic Encryption (FHE) enables private set intersection by evaluating the intersection logic directly on encrypted data, achieving low round complexity and strong security guarantees.

01

Low Round Complexity

FHE-based PSI protocols typically require only one or two rounds of communication, regardless of set size. The client encrypts its entire set under its own public key and sends the ciphertexts to the server. The server homomorphically evaluates the intersection predicate on the encrypted client set and its own plaintext set, returning only the encrypted result. This contrasts sharply with OT-based protocols, where communication rounds often scale with set size or security parameter.

02

Arbitrary Predicate Evaluation

Unlike traditional PSI protocols that only test for exact equality, FHE-based constructions can evaluate arbitrary Boolean circuits over encrypted data. This enables:

  • Threshold-based matching: Intersection on elements within a certain numeric range
  • Fuzzy matching: Approximate string or biometric matching using Hamming distance circuits
  • Composite predicates: Complex logical conditions combining multiple attributes

The server computes f(Enc(x), y) for any computable function f, not just equality checks.

03

Asymmetric Computation Model

FHE-based PSI imposes asymmetric computational costs between parties. The client performs relatively lightweight encryption operations, while the server bears the heavy burden of homomorphic evaluation. A typical server-side computation may involve:

  • Evaluating a depth-optimized Boolean circuit over thousands of ciphertexts
  • Performing homomorphic SIMD packing to batch multiple comparisons into single operations
  • Managing noise growth through bootstrapping or careful parameter selection

This asymmetry makes FHE-PSI ideal for client-server architectures where the server has significant compute resources.

04

Malicious Security Without Overhead

FHE-based PSI protocols achieve malicious security with minimal additional overhead compared to semi-honest variants. The core property is that the server operates entirely on ciphertexts it cannot decrypt, so a malicious server gains nothing by deviating from the protocol. A malicious client is constrained by the semantic security of the FHE scheme itself. Additional zero-knowledge proofs of correct encryption are only required if the client must prove its ciphertexts are well-formed, which is often unnecessary when the client learns the output.

05

Post-Quantum Readiness

FHE schemes are constructed from lattice-based cryptographic assumptions, specifically the Learning With Errors (LWE) and Ring-LWE problems. These problems are believed to be hard for both classical and quantum computers, making FHE-based PSI inherently post-quantum secure. This contrasts with Diffie-Hellman-based PSI protocols, which are vulnerable to Shor's algorithm. For organizations with long-term data confidentiality requirements, FHE-PSI provides a migration path to quantum-resistant private computation.

06

Labeled PSI and PSI-Sum Extensions

FHE-based PSI naturally extends to labeled PSI and PSI-sum without protocol redesign. The server can homomorphically compute:

  • Labeled PSI: Encrypt associated labels alongside set elements, returning only labels for intersecting items
  • PSI-Sum: Homomorphically sum values associated with intersecting elements, revealing only the aggregate
  • PSI-Cardinality: Compute the encrypted count of matches without revealing which elements matched

These extensions leverage the composability of homomorphic operations—once data is encrypted, any computable function can be applied.

PROTOCOL COMPARISON

FHE-Based PSI vs. Other PSI Approaches

A technical comparison of fully homomorphic encryption-based private set intersection against other dominant PSI paradigms across key performance, security, and architectural dimensions.

FeatureFHE-Based PSIOT-Based PSI (KKRT)DH-Based PSI (ECDH)

Round Complexity

1-2 rounds

2 rounds

2 rounds

Communication Complexity

O(n) ciphertexts

O(n) symmetric ops

O(n) public-key ops

Computation Overhead

High (homomorphic ops)

Low (OT extension)

Moderate (exponentiations)

Malicious Security

Post-Quantum Secure

Unbalanced Set Support

Asymmetric Variant

Labeled PSI Support

FHE-BASED PSI

Frequently Asked Questions

Clear answers to common questions about how fully homomorphic encryption enables private set intersection with minimal round complexity and strong security guarantees.

FHE-based PSI is a private set intersection protocol that leverages fully homomorphic encryption to compute the intersection of two sets directly on encrypted data. Unlike OT-based or Diffie-Hellman-based approaches, FHE allows one party to encrypt their set under their own public key, send the ciphertexts to the other party, and have the other party homomorphically evaluate the intersection logic—typically a polynomial representation of their own set—without ever decrypting the inputs. The result is an encrypted intersection that only the original encrypting party can decrypt. This construction achieves minimal round complexity, often requiring only a single round of communication after the initial encrypted set is transmitted, making it particularly attractive for high-latency networks or asynchronous settings where reducing back-and-forth interaction is critical.

Prasad Kumkar

About the author

Prasad Kumkar

CEO & MD, Inference Systems

Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.

His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.