crypto: Export the KeysExport error

master
Damir Jelić 2021-03-30 13:52:57 +02:00
parent 74274e6dcb
commit ff683602f2
2 changed files with 2 additions and 2 deletions

View File

@ -2,4 +2,4 @@ mod attachments;
mod key_export;
pub use attachments::{AttachmentDecryptor, AttachmentEncryptor, DecryptorError, EncryptionInfo};
pub use key_export::{decrypt_key_export, encrypt_key_export};
pub use key_export::{decrypt_key_export, encrypt_key_export, KeyExportError};

View File

@ -42,7 +42,7 @@ mod verification;
pub use error::{MegolmError, OlmError};
pub use file_encryption::{
decrypt_key_export, encrypt_key_export, AttachmentDecryptor, AttachmentEncryptor,
DecryptorError, EncryptionInfo,
DecryptorError, EncryptionInfo, KeyExportError,
};
pub use identities::{
Device, LocalTrust, OwnUserIdentity, ReadOnlyDevice, UserDevices, UserIdentities, UserIdentity,