tencentcloud_sign_sdk/
lib.rs

1//! TencentCloud Sign SDK for Rust
2//!
3//! This library provides common signing utilities for TencentCloud APIs,
4//! including the TC3-HMAC-SHA256 algorithm used across all TencentCloud services.
5
6pub mod crypto;
7pub mod tc3;
8
9pub use crypto::{hmac_sha256, hmac_sha256_hex, sha256_hex};
10pub use tc3::{Tc3SignResult, Tc3Signer};