We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b5a15 commit 9427634Copy full SHA for 9427634
crates/bitwarden-core/src/client/encryption_settings.rs
@@ -77,7 +77,7 @@ impl EncryptionSettings {
77
use bitwarden_crypto::CryptoError;
78
79
let dec: Vec<u8> = key.decrypt_with_key(&user_key)?;
80
- SigningKey::from_cose(&CoseKeyBytes::from(dec)).map_err(Into::<CryptoError>::into)
+ SigningKey::from_cose(&dec.into()).map_err(Into::<CryptoError>::into)
81
})
82
.transpose()?;
83
0 commit comments