apple-cryptokit-rs 0.1.2

A Rust wrapper around Apple's native CryptoKit framework for App Store compliant cryptography.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod shared_secret;
/// 密钥管理模块
///
/// 该模块提供各种密码学密钥的管理功能,包括:
/// - 对称密钥 (SymmetricKey)
/// - 共享密钥 (SharedSecret)
/// - 密钥派生功能
pub mod symmetric;

// Re-export commonly used types
pub use shared_secret::{SharedSecret, SharedSecretImpl};
pub use symmetric::{SymmetricKey, SymmetricKeySize};