@@ -143,11 +143,11 @@ impl<Ids: KeyIds> KeyStore<Ids> {
143
143
/// future to also not be [Send].
144
144
///
145
145
/// Some other possible use cases for this API and alternative recommendations are:
146
- /// - Decrypting or encrypting multiple [Decryptable] or [CompositeEncryptable] items while sharing any
147
- /// local keys. This is not recommended as it can lead to fragile and flaky
146
+ /// - Decrypting or encrypting multiple [Decryptable] or [CompositeEncryptable] items while
147
+ /// sharing any local keys. This is not recommended as it can lead to fragile and flaky
148
148
/// decryption/encryption operations. We recommend any local keys to be used only in the
149
- /// context of a single [CompositeEncryptable] or [Decryptable] implementation. In the future we might
150
- /// enforce this.
149
+ /// context of a single [CompositeEncryptable] or [Decryptable] implementation. In the future
150
+ /// we might enforce this.
151
151
/// - Obtaining the key material directly. We strongly recommend against doing this as it can
152
152
/// lead to key material being leaked, but we need to support it for backwards compatibility.
153
153
/// If you want to access the key material to encrypt it or derive a new key from it, we
@@ -310,7 +310,7 @@ pub(crate) mod tests {
310
310
use crate :: {
311
311
store:: { KeyStore , KeyStoreContext } ,
312
312
traits:: tests:: { TestIds , TestSymmKey } ,
313
- EncString , SymmetricCryptoKey , PrimitiveEncryptableWithContentType ,
313
+ EncString , PrimitiveEncryptableWithContentType , SymmetricCryptoKey ,
314
314
} ;
315
315
316
316
pub struct DataView ( pub String , pub TestSymmKey ) ;
0 commit comments