standardwebhooks 1.0.1

Rust library for creating and verifying webhook signatures.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
Rust library for Standard Webhooks 

# Example

Verifying a webhook payload:

```rust
use standardwebhooks::Webhook;

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