Skip to main content

chaincraft_rust/crypto/
vrf.rs

1//! Verifiable Random Function implementation
2
3/// Placeholder VRF implementation
4#[derive(Debug, Clone)]
5pub struct VerifiableRandomFunction;
6
7impl VerifiableRandomFunction {
8    pub fn new() -> Self {
9        Self
10    }
11}
12
13impl Default for VerifiableRandomFunction {
14    fn default() -> Self {
15        Self::new()
16    }
17}