Uses of Class
paillierp.PartialDecryption

Packages that use PartialDecryption
paillierp Provides the structures and methods to encrypt data with the Paillier encryption scheme with thresholding. 
paillierp.zkp Provides the structures and methods to produce non-interactive Zero Knowledge Proofs of encryption, decryption, and multiplication in the generalized Paillier Encryption scheme. 
 

Uses of PartialDecryption in paillierp
 

Methods in paillierp that return PartialDecryption
 PartialDecryption PaillierThreshold.decrypt(java.math.BigInteger c)
          Partially decrypts the given ciphertext c < n2 using the share of the private key.
 

Methods in paillierp with parameters of type PartialDecryption
 java.math.BigInteger PaillierThreshold.combineShares(PartialDecryption... shares)
          This function combines the shares of the decryption to get the final decryption, assumes that the shares are valid.
 

Uses of PartialDecryption in paillierp.zkp
 

Fields in paillierp.zkp declared as PartialDecryption
protected  PartialDecryption DecryptionZKP.ci
          This share's decryption of c.
 

Methods in paillierp.zkp that return PartialDecryption
 PartialDecryption DecryptionZKP.getPartialDecryption()