https://github.com/CryptDB/cryptdb
Raw File
Tip revision: 7678bc98d3054f1418371779c6d1050cd1a88b2e authored by Raluca Ada Popa on 04 January 2014, 01:31:06 UTC
small changes to readme
Tip revision: 7678bc9
dj.hh
/*
 * Damgard-Jurik (a generalization of Paillier) provides a ciphertext
 * size that is asymptotically close to the plaintext size, rather
 * than a factor of 2 larger in standard Paillier.
 *
 * This may be especially useful in applications where ciphertext space
 * is the bottleneck, where in combination with packing, this should
 * provide almost no ciphertext storage overheads (except for spacing
 * for aggregate overflow).
 *
 * "A Generalisation, a Simplification and some Applications of
 * Paillier's Probabilistic Public-Key System", by Damgard and Jurik.
 * <http://www.daimi.au.dk/~ivan/papers/GeneralPaillier.ps>
 */

back to top