matrix-rust-sdk/matrix_sdk_crypto/src/file_encryption/mod.rs

6 lines
209 B
Rust
Raw Normal View History

mod attachments;
mod key_export;
pub use attachments::{AttachmentDecryptor, AttachmentEncryptor, DecryptorError, EncryptionInfo};
2021-03-30 11:52:57 +00:00
pub use key_export::{decrypt_key_export, encrypt_key_export, KeyExportError};