ChatRoomSecurityLevel

public enum ChatRoomSecurityLevel : Int

TODO move to encryption engine object when available ChatRoomSecurityLevel is used to indicate the encryption security level of a chat room.

  • Security failure.

    Declaration

    Swift

    case Unsafe = 0
  • No encryption.

    Declaration

    Swift

    case ClearText = 1
  • Encrypted.

    Declaration

    Swift

    case Encrypted = 2
  • Encrypted and verified.

    Declaration

    Swift

    case Safe = 3