Skip to content

Commit 2eaa3bc

Browse files
committedMay 1, 2025
Add semicolon
1 parent f7d5b36 commit 2eaa3bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎crates/bitwarden-crypto/src/cose.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl TryFrom<&coset::CoseKey> for SymmetricCryptoKey {
9191
match alg {
9292
coset::Algorithm::PrivateUse(XCHACHA20_POLY1305) => {
9393
if key_bytes.len() != xchacha20::KEY_SIZE {
94-
return Err(CryptoError::InvalidKey)
94+
return Err(CryptoError::InvalidKey);
9595
}
9696
let enc_key = Box::pin(GenericArray::<u8, U32>::clone_from_slice(key_bytes));
9797
let key_id = cose_key

0 commit comments

Comments
 (0)