#captcha #internet-computer #byte #generate #random #complexity #captcha-builder

ic-captcha

Generating CAPTCHAs with given random bytes for the Internet Computer

2 releases (1 stable)

1.0.0 Mar 1, 2024
0.1.0 Feb 29, 2024

#4 in #internet-computer

Download history 81/week @ 2024-02-23 218/week @ 2024-03-01 31/week @ 2024-03-08 2/week @ 2024-03-15 60/week @ 2024-03-29 67/week @ 2024-04-05

131 downloads per month

Apache-2.0

51KB
330 lines

ic-captcha

License Crates.io Codecov CI Docs.rs Latest Version

ic-captcha is a library that generating CAPTCHAs with given random bytes for the Internet Computer.

It is inspired by captcha-rs.

captcha logo

Usage

See examples and the API documentation for more.

Using mode method

CaptchaBuilder::mode Captcha Preview
mode(0): dark on light captcha-mode-0
mode(1): colorful on light captcha-mode-0
mode(2): colorful on dark captcha-mode-0

Using complexity method

CaptchaBuilder::complexity Captcha Preview
complexity(1) captcha-complexity-1
complexity(5) captcha-complexity-5
complexity(10) captcha-complexity-10

Using compression

Captcha::to_base64 Captcha Preview
to_base64(10): 1.49KB captcha-compression-10.jpeg
to_base64(40): 2.68KB captcha-compression-40.jpeg
to_base64(80): 5.21KB captcha-compression-80.jpeg

Example

Add the following dependency to the Cargo.toml file:

[dependencies]
ic-captcha = "1.0"

And then get started in main.rs:

use ic_captcha::CaptchaBuilder;

fn main() {
    {
        let builder = CaptchaBuilder::new();

        let captcha = builder.generate(b"random seed 0", None);
        println!("text: {}", captcha.text());
        println!("base_img: {}", captcha.to_base64(0));

        let captcha = builder.generate(b"random seed 1", None);
        println!("text: {}", captcha.text());
        println!("base_img: {}", captcha.to_base64(0));
    }

    {
        // same as default
        let builder = CaptchaBuilder::new()
            .length(4)
            .width(140)
            .height(60)
            .mode(1)
            .complexity(4);

        let captcha = builder.generate(b"random seed 0", None);
        println!("text: {}", captcha.text());
        println!("base_img: {}", captcha.to_base64(30));
    }
}

License

Copyright © 2024-present LDC Labs.

ldclabs/ic-captcha is licensed under either of Apache License, Version 2.0.

Dependencies

~19MB
~195K SLoC