Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wrapper structure to work on #66

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
234 changes: 0 additions & 234 deletions src/centralized_telescope/algorithm.rs

This file was deleted.

117 changes: 0 additions & 117 deletions src/centralized_telescope/init.rs

This file was deleted.

15 changes: 10 additions & 5 deletions src/centralized_telescope/mod.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
//! ALBA's bounded DFS scheme using Blake2b as hash function.
//! (c.f. Section 3.2.2 of Alba paper)

pub mod algorithm;

pub mod init;

// Defines the internal parameters and provide functions for their generation
pub mod params;

// Defines the proof structure and provide high level functions, i.e. the depth
// first search algorithm (DFS) and indexed proving function, as well as helper
// hash functions
pub mod proof;

// Defines the internal round structure to facilitate the updating and checking
// of a proof candidate
mod round;

pub mod setup;
// Defines the user facing telescope structure, that is instantiated to
// generate an Alba proof out of a set and verify it
pub mod telescope;

// Modules defining internal types
mod types;
Loading
Loading