encryptionStatus property

String? encryptionStatus
getter/setter pair

Encryption status from DevicePolicyManager. Possible string values are:

  • "ENCRYPTION_STATUS_UNSPECIFIED" : Unspecified. No device should have this type.
  • "UNSUPPORTED" : Encryption is not supported by the device.
  • "INACTIVE" : Encryption is supported by the device, but is not currently active.
  • "ACTIVATING" : Encryption is not currently active, but is currently being activated.
  • "ACTIVE" : Encryption is active.
  • "ACTIVE_DEFAULT_KEY" : Encryption is active, but an encryption key is not set by the user.
  • "ACTIVE_PER_USER" : Encryption is active, and the encryption key is tied to the user profile.

Implementation

core.String? encryptionStatus;