KeychainAccessibility enum
KeyChain accessibility attributes as defined here: https://developer.apple.com/documentation/security/ksecattraccessible?language=objc
Values
- passcode → const KeychainAccessibility
-
The data in the keychain can only be accessed when the device is unlocked. Only available if a passcode is set on the device. Items with this attribute do not migrate to a new device.
- unlocked → const KeychainAccessibility
-
The data in the keychain item can be accessed only while the device is unlocked by the user.
- unlocked_this_device → const KeychainAccessibility
-
The data in the keychain item can be accessed only while the device is unlocked by the user. Items with this attribute do not migrate to a new device.
- first_unlock → const KeychainAccessibility
-
The data in the keychain item cannot be accessed after a restart until the device has been unlocked once by the user.
- first_unlock_this_device → const KeychainAccessibility
-
The data in the keychain item cannot be accessed after a restart until the device has been unlocked once by the user. Items with this attribute do not migrate to a new device.
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<
KeychainAccessibility> - A constant List of the values in this enum, in order of their declaration.