├── .gitignore ├── .swift-version ├── .travis.yml ├── Examples └── Locksmith iOS Example │ ├── Locksmith Extension │ ├── Assets.xcassets │ │ └── README__ignoredByTemplate__ │ ├── ExtensionDelegate.swift │ ├── Info.plist │ └── InterfaceController.swift │ ├── Locksmith iOS Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Locksmith iOS Example.xcscheme │ ├── Locksmith iOS Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift │ ├── Locksmith │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Interface.storyboard │ └── Info.plist │ └── Test Host │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── Locksmith.podspec ├── Locksmith.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Locksmith OS X.xcscheme │ ├── Locksmith iOS.xcscheme │ ├── Locksmith tvOS.xcscheme │ └── Locksmith watchOS.xcscheme ├── Locksmith.xcworkspace └── contents.xcworkspacedata ├── Package.swift ├── README.md ├── Source ├── Dictionary_Initializers.swift ├── Info.plist ├── Locksmith.h ├── Locksmith.swift ├── LocksmithAccessibleOption.swift ├── LocksmithError.swift ├── LocksmithInternetAuthenticationType.swift ├── LocksmithInternetProtocol.swift └── LocksmithSecurityClass.swift ├── Test Host ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Test Host.entitlements └── ViewController.swift └── Tests ├── Info.plist └── LocksmithTests └── LocksmithTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/.travis.yml -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith Extension/Assets.xcassets/README__ignoredByTemplate__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith Extension/Assets.xcassets/README__ignoredByTemplate__ -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith Extension/Info.plist -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith Extension/InterfaceController.swift -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example.xcodeproj/xcshareddata/xcschemes/Locksmith iOS Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example.xcodeproj/xcshareddata/xcschemes/Locksmith iOS Example.xcscheme -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example/Info.plist -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith iOS Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith iOS Example/ViewController.swift -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Locksmith/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Locksmith/Info.plist -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Test Host/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Test Host/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Test Host/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Test Host/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Test Host/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Test Host/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Test Host/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Test Host/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Test Host/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Test Host/Info.plist -------------------------------------------------------------------------------- /Examples/Locksmith iOS Example/Test Host/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Examples/Locksmith iOS Example/Test Host/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/LICENSE -------------------------------------------------------------------------------- /Locksmith.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.podspec -------------------------------------------------------------------------------- /Locksmith.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Locksmith.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith OS X.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith OS X.xcscheme -------------------------------------------------------------------------------- /Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith iOS.xcscheme -------------------------------------------------------------------------------- /Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith tvOS.xcscheme -------------------------------------------------------------------------------- /Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcodeproj/xcshareddata/xcschemes/Locksmith watchOS.xcscheme -------------------------------------------------------------------------------- /Locksmith.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Locksmith.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/README.md -------------------------------------------------------------------------------- /Source/Dictionary_Initializers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/Dictionary_Initializers.swift -------------------------------------------------------------------------------- /Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/Info.plist -------------------------------------------------------------------------------- /Source/Locksmith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/Locksmith.h -------------------------------------------------------------------------------- /Source/Locksmith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/Locksmith.swift -------------------------------------------------------------------------------- /Source/LocksmithAccessibleOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/LocksmithAccessibleOption.swift -------------------------------------------------------------------------------- /Source/LocksmithError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/LocksmithError.swift -------------------------------------------------------------------------------- /Source/LocksmithInternetAuthenticationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/LocksmithInternetAuthenticationType.swift -------------------------------------------------------------------------------- /Source/LocksmithInternetProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/LocksmithInternetProtocol.swift -------------------------------------------------------------------------------- /Source/LocksmithSecurityClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Source/LocksmithSecurityClass.swift -------------------------------------------------------------------------------- /Test Host/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/AppDelegate.swift -------------------------------------------------------------------------------- /Test Host/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Test Host/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Test Host/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Test Host/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/Info.plist -------------------------------------------------------------------------------- /Test Host/Test Host.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/Test Host.entitlements -------------------------------------------------------------------------------- /Test Host/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Test Host/ViewController.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/LocksmithTests/LocksmithTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewpalmer/Locksmith/HEAD/Tests/LocksmithTests/LocksmithTests.swift --------------------------------------------------------------------------------