enableSecureBoot property

  1. @TagNumber(1)
bool get enableSecureBoot

Defines whether the instance has Secure Boot enabled.

Secure Boot helps ensure that the system only runs authentic software by verifying the digital signature of all boot components, and halting the boot process if signature verification fails. Disabled by default.

Implementation

@$pb.TagNumber(1)
$core.bool get enableSecureBoot => $_getBF(0);
  1. @TagNumber(1)
set enableSecureBoot (bool v)

Implementation

@$pb.TagNumber(1)
set enableSecureBoot($core.bool v) { $_setBool(0, v); }