ic-captcha

Crates.ioic-captcha
lib.rsic-captcha
version1.0.0
sourcesrc
created_at2024-02-29 13:06:40.207475
updated_at2024-03-01 02:04:53.241607
descriptionGenerating CAPTCHAs with given random bytes for the Internet Computer.
homepage
repositoryhttps://github.com/ldclabs/ic-captcha
max_upload_size
id1157767
size99,067
0xZensh (zensh)

documentation

README

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.

Commit count: 0

cargo fmt