geronimo-captcha 1.0.0

Secure, AI-resistant, JavaScript-free CAPTCHA built in Rust. Confuses bots, but delights humans.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod challenge;
mod error;
mod image;
mod manager;
mod registry;
mod sprite;
mod utils;

pub use challenge::{CaptchaChallenge, GenerationOptions};
pub use error::{CaptchaError, Result};
pub use image::NoiseOptions;
pub use manager::CaptchaManager;
pub use registry::{ChallengeInMemoryRegistry, ChallengeRegistry, RegistryCheckResult};
pub use sprite::{SpriteBinary, SpriteFormat, SpriteUri};