wxpay-rs 2.0.1

WeChat Pay API v3 Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
//! 加解密模块
//!
//! 提供 RSA-OAEP 和 AES-256-GCM 加解密功能。

pub mod aes;
pub mod hash;
pub mod rsa;

pub use aes::Aes256GcmCipher;
pub use rsa::{RsaOaepCipher, RsaOaepDecrypter};