crypto: Export the KeysExport error
parent
74274e6dcb
commit
ff683602f2
|
@ -2,4 +2,4 @@ mod attachments;
|
||||||
mod key_export;
|
mod key_export;
|
||||||
|
|
||||||
pub use attachments::{AttachmentDecryptor, AttachmentEncryptor, DecryptorError, EncryptionInfo};
|
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};
|
||||||
|
|
|
@ -42,7 +42,7 @@ mod verification;
|
||||||
pub use error::{MegolmError, OlmError};
|
pub use error::{MegolmError, OlmError};
|
||||||
pub use file_encryption::{
|
pub use file_encryption::{
|
||||||
decrypt_key_export, encrypt_key_export, AttachmentDecryptor, AttachmentEncryptor,
|
decrypt_key_export, encrypt_key_export, AttachmentDecryptor, AttachmentEncryptor,
|
||||||
DecryptorError, EncryptionInfo,
|
DecryptorError, EncryptionInfo, KeyExportError,
|
||||||
};
|
};
|
||||||
pub use identities::{
|
pub use identities::{
|
||||||
Device, LocalTrust, OwnUserIdentity, ReadOnlyDevice, UserDevices, UserIdentities, UserIdentity,
|
Device, LocalTrust, OwnUserIdentity, ReadOnlyDevice, UserDevices, UserIdentities, UserIdentity,
|
||||||
|
|
Loading…
Reference in New Issue