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:
manuroe
2020-04-23 14:57:56 +02:00
parent f5d5c6b79b
commit 6889f6d326
5 changed files with 15 additions and 3 deletions
@@ -23,6 +23,7 @@ typedef NS_ENUM(NSUInteger, UserEncryptionTrustLevel) {
UserEncryptionTrustLevelTrusted,
UserEncryptionTrustLevelWarning,
UserEncryptionTrustLevelNormal,
UserEncryptionTrustLevelNoCrossSigning, // The user has not bootstrapped cross-signing yet
UserEncryptionTrustLevelNone,
UserEncryptionTrustLevelUnknown
};