#captcha #back-end #hcaptcha #protection #security

macro hcaptcha_derive

Derive macro for hCaptcha. Please use hcaptcha crate.

26 stable releases

2.7.6 Oct 24, 2024
2.5.0 Sep 14, 2024
2.4.4 Jul 27, 2024
2.3.1 Jan 27, 2024
2.1.0 Oct 29, 2021

#30 in #captcha

Download history 384/week @ 2024-07-21 144/week @ 2024-07-28 114/week @ 2024-08-04 204/week @ 2024-08-11 46/week @ 2024-08-18 171/week @ 2024-08-25 191/week @ 2024-09-01 189/week @ 2024-09-08 142/week @ 2024-09-15 1315/week @ 2024-09-22 311/week @ 2024-09-29 194/week @ 2024-10-06 542/week @ 2024-10-13 2441/week @ 2024-10-20 306/week @ 2024-10-27 454/week @ 2024-11-03

3,747 downloads per month
Used in hcaptcha

MIT/Apache

15KB
145 lines

Rust library hcaptcha

Crates.io MIT licensed Build Status Rust 1.75+ Docs BuyMeaCoffee GitHubSponsors

The rust library hcaptcha is used with your backend service to verify the hcaptcha response provided from the client.

Installation

To use hcaptcha, add the following to your Cargo.toml:

[dependencies]
hcaptcha = "2.7.6"

Usage

Derive a validation method on the data structure representing your data, marking the captcha components in the data structure.

# use hcaptcha::Hcaptcha;

#[derive(Debug, Deserialize, Hcaptcha)]
pub struct ContactForm {
    name: String,
    phone: String,
    email: String,
    message: String,
    #[captcha]
    token: String,
}

Validate the captcha data.

    # #[tokio::main]
    # async main() -> Result<(), Box<dyn std::error::Error>> {
    let contact_form: ContactForm = serde_json::from_str(e.body_string())?;
    contact_form.valid_response(&secret, None).await?;
    # }
    # fn get_your_secret() -> String {
    #   "0x123456789abcde0f123456789abcdef012345678".to_string()
    # }

See the examples folder for an AWS Lambda contact form example.

Web Assembly

Hcaptcha has been tested in a web assembly project using wasm-bindgen and node.

See the hcaptcha-wasm example for a sample project which can be run using wasm-pack test --node.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Credits

Initial version based on recaptcha-rs by panicbit.

Dependencies

~305–750KB
~17K SLoC