vrf-rs

vrf-rs is an open source implementation of Verifiable Random Functions (VRFs) written in Rust.

DISCLAIMER: This is experimental software. Be careful!

Elliptic Curve VRF

This module uses the OpenSSL library to offer Elliptic Curve Verifiable Random Function (VRF) functionality.

It follows the algorithms described in:

Currently the supported cipher suites are:

Example

Create and verify a VRF proof by using the cipher suite SECP256K1_SHA256_TAI:

```rust use vrf::VRF; use vrf::openssl::{CipherSuite, ECVRF};

// Initialization of VRF context by providing a curve
let mut vrf = ECVRF::from_suite(CipherSuite::SECP256K1_SHA256_TAI)?;

// `prove` returns a `Result` with the VRF proof as `Vec<u8>`
let proof = vrf.prove(&secret_key, &message)?;

// `verify` returns a `Result` with the VRF hash output as `Vec<u8>`
let proof_hash = vrf.verify(&public_key, &pi, &message);

```

Adding unsupported cipher suites

This library defines a VRF trait which can be extended in order to use different curves and algorithms.

```rust pub trait VRF { type Error;

fn prove(&mut self, x: SecretKey, alpha: &[u8]) -> Result<Vec<u8>, Self::Error>;

fn verify(&mut self, y: PublicKey, pi: &[u8], alpha: &[u8]) -> Result<Vec<u8>, Self::Error>;

} ```

License

vrf-rs is published under the GNU General Public License v3.0.