๐Ÿงท
EllipticPIR
  • Introduction
  • Why not Tor?
  • โ˜๏ธCloud
    • EllipticPIR Cloud
  • ๐Ÿ–‹๏ธDevelopers
    • Client Library (MIT)
  • ๐Ÿ› ๏ธTechnology
    • Introduction
    • Code Audit
    • EC-ElGamal Encryption
    • Query Composition
    • Reply Generation
    • Reply Decryption
    • Key Search
    • Why Reply Generation is O(n)
  • ๐Ÿ›’Applications
    • Crypto Wallet Provider
    • Credit Scoring
    • + Add Your Service
  • โ“Help
    • Contact
Powered by GitBook
On this page
  1. Technology

Reply Decryption

The server reply is nested encrypted message with the depth equal to the dimension d of the dataset, the reply decryption process you need to decrypt the server's message for d times.

decrypted = Dec(..Dec(reply)..)

The decrypted will be the data you requested with some padding. The library automatically remove the padding and returns the desired result.

PreviousReply GenerationNextKey Search

Last updated 1 year ago

๐Ÿ› ๏ธ