gitextract_9kvtxevm/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── contents.xcworkspacedata ├── Examples/ │ └── Example-iOS/ │ ├── Example-iOS/ │ │ ├── AccountsViewController.swift │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Example-iOS.entitlements │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── InputViewController.swift │ └── Example-iOS.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── Example-iOS.xcscheme ├── KeychainAccess.podspec ├── KeychainAccess.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Lib/ │ ├── Configurations/ │ │ ├── Base.xcconfig │ │ ├── Debug.xcconfig │ │ ├── KeychainAccess.xcconfig │ │ ├── Release.xcconfig │ │ ├── TestHost.xcconfig │ │ └── Tests.xcconfig │ ├── KeychainAccess/ │ │ ├── Info.plist │ │ ├── Keychain.swift │ │ └── KeychainAccess.h │ ├── KeychainAccess.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── KeychainAccess.xcscheme │ │ └── TestHost.xcscheme │ ├── KeychainAccessTests/ │ │ ├── EnumTests.swift │ │ ├── ErrorTypeTests.swift │ │ ├── Info.plist │ │ ├── KeychainAccessTests.swift │ │ └── SharedCredentialTests.swift │ ├── TestHost/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── TestHost.entitlements │ └── TestHost-MacCatalyst/ │ ├── KeychainAccessTests-MacCatalyst/ │ │ └── Info.plist │ ├── TestHost-MacCatalyst/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SceneDelegate.swift │ │ ├── TestHost-MacCatalyst.entitlements │ │ └── ViewController.swift │ └── TestHost-MacCatalyst.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── TestHost-MacCatalyst.xcscheme ├── Package.swift ├── Package@swift-5.3.swift └── README.md