diff --git a/crates/bitwarden-core/src/mobile/client_crypto.rs b/crates/bitwarden-core/src/mobile/client_crypto.rs index ac07f21b6..293b8f9b3 100644 --- a/crates/bitwarden-core/src/mobile/client_crypto.rs +++ b/crates/bitwarden-core/src/mobile/client_crypto.rs @@ -1,6 +1,7 @@ #[cfg(feature = "internal")] use bitwarden_crypto::{AsymmetricEncString, EncString}; +use super::crypto::{derive_key_connector, DeriveKeyConnectorRequest}; use crate::Client; #[cfg(feature = "internal")] use crate::{ @@ -12,8 +13,6 @@ use crate::{ }, }; -use super::crypto::{derive_key_connector, DeriveKeyConnectorRequest}; - pub struct ClientCrypto<'a> { pub(crate) client: &'a crate::Client, }