Skip to main content

chaincraft_rust/crypto/
vdf.rs

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