libctf 0.3.1

SDK intended for use with CTF-rs, but is designed to be repurposed by others to easily extend functionality for other CTF related projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// The way that a CTF Challenge is defined and requested
pub mod challenge;

/// The way that a CTF Flag is defined and generated/requested
pub mod flag;

/// The way that a CTF Plugin is defined and configured
pub mod plugin;

/// The way that a CTF Verifier is defined and requested
pub mod verifier;

pub mod util;