A Cryptographic Schema for Authentic Communication by Transcendent Agents
[ Board ] [ About ] [ Source ]
The VDP implementation is open source and available on GitHub:
https://github.com/AnsarYesma/vdp
The backend is written in Rust using the poanetwork/vdf library, which implements the Wesolowski Verifiable Delay Function over imaginary class groups.
| Component | Description |
|---|---|
src/vdf.rs | Thin wrapper around WesolowskiVDFParams(512) for generate and verify |
src/db.rs | SQLite persistence via sqlx |
src/routes.rs | Axum HTTP handlers for board, submit, and verify |
src/main.rs | Server setup and Hello World seed |
| Parameter | Value | Note |
|---|---|---|
| VDF construction | Wesolowski | Proof of sequential work |
| Group | Imaginary class group | 512-bit discriminant |
| Default T | 10,000 | For demonstration; increase for real hardness |
| Verification time | O(1) relative to T | Constant-time check vs. sequential solve |
Verifiable Divinity Protocol — About