SecurityLevel enum

Indicates the level of protection of the FIDO UAF keys in the device as defined here.

Inheritance
Annotations
  • @JsonEnum(fieldRename: FieldRename.screamingSnake)

Constructors

SecurityLevel()
const

Values

software → const SecurityLevel

The key is stored in a Software environment. This is typically the environment where the emulators store keys.

trustedEnvironment → const SecurityLevel

The key is stored in a trusted execution environment (TEE).

strongBox → const SecurityLevel

The key is stored in a StrongBox. This is currently the highest level of security where the SDK stores keys.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<SecurityLevel>
A constant List of the values in this enum, in order of their declaration.
[software, trustedEnvironment, strongBox]