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
/// The required code to implement to create a custom challenge
pub mod challenge;
/// The required code to implement to create a custom flag
pub mod flag;
/// The required code to implement to create a custom plugin
pub mod plugin;
/// The required code to implement to create a custom verifier
pub mod verifier;