Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vschwaberow/vrf-example
Verifiable Random Function (VRF) Rust example
https://github.com/vschwaberow/vrf-example
Last synced: about 1 month ago
JSON representation
Verifiable Random Function (VRF) Rust example
- Host: GitHub
- URL: https://github.com/vschwaberow/vrf-example
- Owner: vschwaberow
- License: mit
- Created: 2022-12-15T17:25:35.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T02:05:04.000Z (7 months ago)
- Last Synced: 2024-06-20T14:34:14.316Z (7 months ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Verifiable Random Function (VRF) Rust example
A VRF, or verifiable random function, is a cryptographic primitive
that allows one party (the prover) to generate a deterministic value
that can be verified by another party (the verifier) to have been generated
randomly. VRFs are useful for applications that require randomness in a
distributed setting, such as randomness beacon protocols and leader
election algorithms.This repository shows example code how to implement it in Rust.
## Contribution
If you want to contribute to make this example more mature, please
submit your pull request. Thanks.