apple-cryptokit-rs 0.2.0

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;
/// Key management module
///
/// This module provides management functions for various cryptographic keys, including:
/// - Symmetric keys (SymmetricKey)
/// - Shared secrets (SharedSecret)
/// - Key derivation functions
pub mod symmetric;

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