standardwebhooks 1.0.1

Rust library for creating and verifying webhook signatures.
Documentation

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");