Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noot/go-paillier
implementation of the Paillier cryptosystem
https://github.com/noot/go-paillier
asymmetric-cryptography cryptography homomorphic-encryption paillier paillier-cryptosystem
Last synced: 4 days ago
JSON representation
implementation of the Paillier cryptosystem
- Host: GitHub
- URL: https://github.com/noot/go-paillier
- Owner: noot
- License: lgpl-3.0
- Created: 2022-10-09T16:52:29.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-09T17:02:31.000Z (about 2 years ago)
- Last Synced: 2024-10-15T22:26:06.827Z (about 1 month ago)
- Topics: asymmetric-cryptography, cryptography, homomorphic-encryption, paillier, paillier-cryptosystem
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-paillier
This library is an implementation of the [Paillier cryptosystem](https://en.wikipedia.org/wiki/Paillier_cryptosystem) which is an asymmetric encryption algorithm. It has homomorphic properties; ie. multiplying two ciphertexts decrypts to the sum of their plaintexts. This property is leveraged for threshold ECDSA.
I wrote this for learning purposes only :)