SecurityLevel enum
Indicates the level of protection of the FIDO UAF keys in the device as defined here.
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
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]