go-go-gadget-paillier icon indicating copy to clipboard operation
go-go-gadget-paillier copied to clipboard

A Go implementation of the partially homomorphic Paillier Cryptosystem.

Results 2 go-go-gadget-paillier issues
Sort by recently updated
recently updated
newest added

line 106 func EncryptAndNonce(pubKey *PublicKey, plainText []byte) ([]byte, *big.Int, error) line 107 r, err := rand.Int(rand.Reader, pubKey.N) r just a random int, How to ensure that r and N are...