├── .gitignore ├── .spi.yml ├── .swiftformat ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ ├── DeviceAuthority-Package.xcscheme │ ├── DeviceAuthority.xcscheme │ └── swift-device-authority.xcscheme ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── Sample ├── DeviceAuthoritySample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── DeviceAuthoritySample.xcscheme ├── README.md ├── Resources │ ├── SwiftDeviceAuthority-Leaf.cer │ └── SwiftDeviceAuthority.mobileconfig └── Sources │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ └── DeviceAuthorityApp.swift ├── Sources ├── CommandLine │ ├── Command.swift │ ├── CreateAuthorityCommand.swift │ ├── CreateLeafCommand.swift │ └── MobileConfiguration.swift └── DeviceAuthority │ └── DeviceAuthority.swift └── Tests └── DeviceAuthorityTests └── DeviceAuthorityTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/DeviceAuthority-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/DeviceAuthority-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/DeviceAuthority.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/DeviceAuthority.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/swift-device-authority.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/swift-device-authority.xcscheme -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/README.md -------------------------------------------------------------------------------- /Sample/DeviceAuthoritySample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/DeviceAuthoritySample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/DeviceAuthoritySample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/DeviceAuthoritySample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/DeviceAuthoritySample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/DeviceAuthoritySample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Sample/DeviceAuthoritySample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/DeviceAuthoritySample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Sample/DeviceAuthoritySample.xcodeproj/xcshareddata/xcschemes/DeviceAuthoritySample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/DeviceAuthoritySample.xcodeproj/xcshareddata/xcschemes/DeviceAuthoritySample.xcscheme -------------------------------------------------------------------------------- /Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/README.md -------------------------------------------------------------------------------- /Sample/Resources/SwiftDeviceAuthority-Leaf.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Resources/SwiftDeviceAuthority-Leaf.cer -------------------------------------------------------------------------------- /Sample/Resources/SwiftDeviceAuthority.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Resources/SwiftDeviceAuthority.mobileconfig -------------------------------------------------------------------------------- /Sample/Sources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Sources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Sample/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sample/Sources/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Sources/ContentView.swift -------------------------------------------------------------------------------- /Sample/Sources/DeviceAuthorityApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sample/Sources/DeviceAuthorityApp.swift -------------------------------------------------------------------------------- /Sources/CommandLine/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sources/CommandLine/Command.swift -------------------------------------------------------------------------------- /Sources/CommandLine/CreateAuthorityCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sources/CommandLine/CreateAuthorityCommand.swift -------------------------------------------------------------------------------- /Sources/CommandLine/CreateLeafCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sources/CommandLine/CreateLeafCommand.swift -------------------------------------------------------------------------------- /Sources/CommandLine/MobileConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sources/CommandLine/MobileConfiguration.swift -------------------------------------------------------------------------------- /Sources/DeviceAuthority/DeviceAuthority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Sources/DeviceAuthority/DeviceAuthority.swift -------------------------------------------------------------------------------- /Tests/DeviceAuthorityTests/DeviceAuthorityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsidetrack/swift-device-authority/HEAD/Tests/DeviceAuthorityTests/DeviceAuthorityTests.swift --------------------------------------------------------------------------------