mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 16:13:42 +02:00
Cross-signing: Allow to verify each device of users with no cross-signing
Fix #3138 This is implemented by adding a new `UserEncryptionTrustLevel` value: `UserEncryptionTrustLevelNoCrossSigning`
This commit is contained in:
@@ -842,6 +842,7 @@
|
||||
statusText = NSLocalizedStringFromTable(@"room_participants_action_security_status_verified", @"Vector", nil);
|
||||
break;
|
||||
case UserEncryptionTrustLevelNormal:
|
||||
case UserEncryptionTrustLevelNoCrossSigning:
|
||||
statusText = NSLocalizedStringFromTable(@"room_participants_action_security_status_verify", @"Vector", nil);
|
||||
break;
|
||||
case UserEncryptionTrustLevelWarning:
|
||||
@@ -875,6 +876,7 @@
|
||||
switch (self.encryptionTrustLevel) {
|
||||
case UserEncryptionTrustLevelWarning:
|
||||
case UserEncryptionTrustLevelNormal:
|
||||
case UserEncryptionTrustLevelNoCrossSigning:
|
||||
case UserEncryptionTrustLevelTrusted:
|
||||
[encryptionInformation appendString:NSLocalizedStringFromTable(@"room_participants_security_information_room_encrypted", @"Vector", nil)];
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user