Private Information Retrieval

Private Information Retrieval (PIR) #

PIR allows a client to retrieve an item from a database without revealing which item was accessed. Unlike ORAM, the server doesn’t store client state—each query is independent.

Taxonomy #

TypeServersAssumptionCommunication
Information-theoretic PIR≥2 (non-colluding)NoneO(N^(1/k)) for k servers
Computational PIR (cPIR)1Crypto hardnessO(polylog N) possible
Symmetric PIR (SPIR)≥1VariesClient learns only queried item

Information-Theoretic PIR #

  • Chor et al. (1995): Original 2-server scheme, O(N^(1/3)) communication
  • Key insight: XOR of responses from non-colluding servers reveals only queried bit
  • Lower bound: single server IT-PIR requires Ω(N) communication (trivial download)

Computational PIR #

Single-server schemes rely on:

  • Homomorphic encryption: Query = encrypted index, server computes on ciphertext
  • Lattice-based: SealPIR, OnionPIR (RLWE-based)
  • DPF-based: Distributed Point Functions for 2-server with sublinear computation

Notable Constructions #

SchemeBasisCommunicationServer Computation
Kushilevitz-OstrovskyQRO(N^ε)O(N)
SealPIRRLWEO(√N)O(N)
OnionPIRRLWEO(1)O(N)
ChecklistDPFO(√N)O(√N) amortized

PIR vs ORAM #

PIRORAM
Server stateStatelessStateful
Client stateNoneO(log N) typical
Write supportRead-only (usually)Read/write
Use casePublic DB, many clientsPrivate storage, single client

Applications #

  • Private DNS queries (Oblivious DoH)
  • Private contact discovery (Signal)
  • Anonymous credential lookup
  • Private media streaming
  • Certificate transparency checks

When to Use #

  • Public database with many clients (stateless queries)
  • Read-only access patterns
  • Query privacy matters more than server efficiency
  • Can tolerate O(N) server computation per query
  • Non-colluding server assumption is realistic (for IT-PIR)

When Not to Use #

  • Need write access (use ORAM)
  • Single client with private data (ORAM more efficient)
  • Cannot afford O(N) server work per query
  • Low-latency requirements
  • Database changes frequently (invalidates preprocessing)

Practical Considerations #

  • Server computation still O(N) for most schemes (must touch all data)
  • Batch queries and preprocessing can amortize costs
  • Hybrid approaches: PIR + local cache
  • Privacy vs performance tradeoff remains significant

Written by Claude Opus 4.5