standardwebhooks

Crates.iostandardwebhooks
lib.rsstandardwebhooks
version1.0.1
sourcesrc
created_at2024-03-04 13:43:13.608362
updated_at2024-03-04 13:47:40.980406
descriptionRust library for creating and verifying webhook signatures.
homepage
repositoryhttps://github.com/standard-webhooks/standard-webhooks
max_upload_size
id1161772
size12,755
Tom Hacohen (tasn)

documentation

README

Rust library for Standard Webhooks

Example

Verifying a webhook payload:

use standardwebhooks::Webhook;

let wh = Webhook::new(base64_secret);
wh.verify(webhook_payload, webhook_headers).expect("Webhook verification failed");
Commit count: 0

cargo fmt