stateset-a2a 0.7.13

Agent-to-Agent commerce service layer: splits, subscriptions, escrow, webhooks, event streaming
1
2
3
4
5
6
7
8
9
10
11
//! Webhook notification service types and logic.
//!
//! Provides HMAC-SHA256 signed webhook delivery and SSRF validation.

pub mod hmac;
pub mod ssrf;

pub use self::hmac::{
    WebhookHmacError, sign_webhook, try_sign_webhook, try_verify_webhook, verify_webhook,
};
pub use ssrf::{UrlValidationOptions, validate_url, validate_url_with_options};