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 f6f25e9 commit 2a076a4Copy full SHA for 2a076a4
crates/bitwarden-core/src/key_management/crypto.rs
@@ -601,7 +601,7 @@ pub struct EnrollUserCryptoV2Response {
601
verifying_key: String,
602
603
/// The user's signed security state
604
- signed_security_state: SignedSecurityState,
+ security_state: SignedSecurityState,
605
/// The security state's version
606
security_version: u64,
607
}
@@ -674,7 +674,7 @@ pub fn make_keys_for_user_crypto_v2(
674
.encrypt(&mut ctx, temporary_user_key_id)?,
675
verifying_key: STANDARD.encode(signing_key.to_verifying_key().to_cose()),
676
677
- signed_security_state,
+ security_state: signed_security_state,
678
security_version: security_state.version(),
679
})
680
0 commit comments