Skip to content

Commit d704375

Browse files
committed
Fix clippy
1 parent 99fbb45 commit d704375

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/bitwarden-crypto/src/safe/data_envelope.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ impl DataEnvelope {
8585
Ok((envelope, cek_id))
8686
}
8787

88-
/// Seals a struct into an encrypted blob. The content encryption key is wrapped with the provided
89-
/// wrapping key
88+
/// Seals a struct into an encrypted blob. The content encryption key is wrapped with the
89+
/// provided wrapping key
9090
pub fn seal_with_wrapping_key<Ids: KeyIds, T>(
9191
data: T,
9292
wrapping_key: &Ids::Symmetric,
@@ -180,7 +180,7 @@ impl DataEnvelope {
180180
}
181181
}
182182

183-
// Unseals the data from the encrypted blob and wrapped content-encryption-key.
183+
/// Unseals the data from the encrypted blob and wrapped content-encryption-key.
184184
pub fn unseal_with_wrapping_key<Ids: KeyIds, T>(
185185
&self,
186186
wrapping_key: &Ids::Symmetric,

0 commit comments

Comments
 (0)