Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.