| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import Foundation
- protocol KeychainAttrRepresentable {
- var keychainAttrValue: CFString { get }
- }
- // MARK: - KeychainItemAccessibility
- public enum KeychainItemAccessibility {
- /**
- The data in the keychain item cannot be accessed after a restart until the device has been unlocked once by the user.
- After the first unlock, the data remains accessible until the next restart. This is recommended for items that need to be accessed by background applications. Items with this attribute migrate to a new device when using encrypted backups.
- */
- case afterFirstUnlock
- /**
- The data in the keychain item cannot be accessed after a restart until the device has been unlocked once by the user.
- After the first unlock, the data remains accessible until the next restart. This is recommended for items that need to be accessed by background applications. Items with this attribute do not migrate to a new device. Thus, after restoring from a backup of a different device, these items will not be present.
- */
- case afterFirstUnlockThisDeviceOnly
- /**
- The data in the keychain item can always be accessed regardless of whether the device is locked.
- This is not recommended for application use. Items with this attribute migrate to a new device when using encrypted backups.
- */
- case whenPasscodeSetThisDeviceOnly
- /**
- The data in the keychain item can always be accessed regardless of whether the device is locked.
- This is not recommended for application use. Items with this attribute do not migrate to a new device. Thus, after restoring from a backup of a different device, these items will not be present.
- */
- case whenUnlocked
- /**
- The data in the keychain item can be accessed only while the device is unlocked by the user.
- This is recommended for items that need to be accessible only while the application is in the foreground. Items with this attribute do not migrate to a new device. Thus, after restoring from a backup of a different device, these items will not be present.
- */
- case whenUnlockedThisDeviceOnly
- static func accessibilityForAttributeValue(_ keychainAttrValue: CFString) -> KeychainItemAccessibility? {
- let firstResult = keychainItemAccessibilityLookup.enumerated().first { $0.element.value == keychainAttrValue }
- return firstResult?.element.key
- }
- }
- private let keychainItemAccessibilityLookup: [KeychainItemAccessibility: CFString] = {
- var lookup: [KeychainItemAccessibility: CFString] = [
- .afterFirstUnlock: kSecAttrAccessibleAfterFirstUnlock,
- .afterFirstUnlockThisDeviceOnly: kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly,
- .whenPasscodeSetThisDeviceOnly: kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly,
- .whenUnlocked: kSecAttrAccessibleWhenUnlocked,
- .whenUnlockedThisDeviceOnly: kSecAttrAccessibleWhenUnlockedThisDeviceOnly
- ]
- return lookup
- }()
- extension KeychainItemAccessibility: KeychainAttrRepresentable {
- internal var keychainAttrValue: CFString {
- keychainItemAccessibilityLookup[self]!
- }
- }
|