Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t-bast/ring-signatures
Implementations of Ring Signature schemes.
https://github.com/t-bast/ring-signatures
cryptography ring-signatures signatures
Last synced: 18 days ago
JSON representation
Implementations of Ring Signature schemes.
- Host: GitHub
- URL: https://github.com/t-bast/ring-signatures
- Owner: t-bast
- License: apache-2.0
- Created: 2018-02-14T12:33:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-26T11:02:43.000Z (over 6 years ago)
- Last Synced: 2024-10-18T15:13:06.147Z (28 days ago)
- Topics: cryptography, ring-signatures, signatures
- Language: Go
- Size: 28.3 KB
- Stars: 24
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ring Signatures
Implementations of Ring Signature schemes.
See [How to Leak a Secret](https://people.csail.mit.edu/rivest/pubs/RST01.pdf) for the original paper.The paper describes ring signatures using RSA, but this repository implements ring signatures using elliptic curves instead, based on Schnorr signatures.
## Disclaimer
Note that this implementation didn't go through a proper cryptographic audit.
It's most likely not secure for real-world use.
It hasn't been performance-tested either, so it's probably not the most performant implementation you could find either.
If you do look at the code and find security issues, please open an issue: I would be really interested in understanding what could go wrong and fixing it (and maybe eventually this will become a usable implementation, who knows?).