├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml └── xcode.xml ├── CHANGELOG ├── LICENSE.txt ├── Package.resolved ├── Package.swift ├── README.md ├── SelfSignedCert.podspec ├── SelfSignedCert.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── SelfSignedCert.xcscheme ├── SelfSignedCert ├── ASN1Object.swift ├── BitString.swift ├── CertificateName.swift ├── CertificateRequest.swift ├── DEREncoding.swift ├── Info.plist ├── OID.swift ├── SecCertificate+Keychain.swift ├── SecIdentity+SelfSigned.swift └── SelfSignedCert.h ├── SelfSignedCertTests ├── CertificateNameTests.swift ├── CertificateRequestTests.swift ├── DERTests.swift ├── Info.plist ├── OIDTests.swift ├── SecIdentity+SelfSignedTests.swift ├── certdata.der └── pubkey.bin └── TestHost ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/xcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/.idea/xcode.xml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/README.md -------------------------------------------------------------------------------- /SelfSignedCert.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert.podspec -------------------------------------------------------------------------------- /SelfSignedCert.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SelfSignedCert.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SelfSignedCert.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SelfSignedCert.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /SelfSignedCert.xcodeproj/xcshareddata/xcschemes/SelfSignedCert.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert.xcodeproj/xcshareddata/xcschemes/SelfSignedCert.xcscheme -------------------------------------------------------------------------------- /SelfSignedCert/ASN1Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/ASN1Object.swift -------------------------------------------------------------------------------- /SelfSignedCert/BitString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/BitString.swift -------------------------------------------------------------------------------- /SelfSignedCert/CertificateName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/CertificateName.swift -------------------------------------------------------------------------------- /SelfSignedCert/CertificateRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/CertificateRequest.swift -------------------------------------------------------------------------------- /SelfSignedCert/DEREncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/DEREncoding.swift -------------------------------------------------------------------------------- /SelfSignedCert/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/Info.plist -------------------------------------------------------------------------------- /SelfSignedCert/OID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/OID.swift -------------------------------------------------------------------------------- /SelfSignedCert/SecCertificate+Keychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/SecCertificate+Keychain.swift -------------------------------------------------------------------------------- /SelfSignedCert/SecIdentity+SelfSigned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/SecIdentity+SelfSigned.swift -------------------------------------------------------------------------------- /SelfSignedCert/SelfSignedCert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCert/SelfSignedCert.h -------------------------------------------------------------------------------- /SelfSignedCertTests/CertificateNameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/CertificateNameTests.swift -------------------------------------------------------------------------------- /SelfSignedCertTests/CertificateRequestTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/CertificateRequestTests.swift -------------------------------------------------------------------------------- /SelfSignedCertTests/DERTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/DERTests.swift -------------------------------------------------------------------------------- /SelfSignedCertTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/Info.plist -------------------------------------------------------------------------------- /SelfSignedCertTests/OIDTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/OIDTests.swift -------------------------------------------------------------------------------- /SelfSignedCertTests/SecIdentity+SelfSignedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/SecIdentity+SelfSignedTests.swift -------------------------------------------------------------------------------- /SelfSignedCertTests/certdata.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/certdata.der -------------------------------------------------------------------------------- /SelfSignedCertTests/pubkey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/SelfSignedCertTests/pubkey.bin -------------------------------------------------------------------------------- /TestHost/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/AppDelegate.swift -------------------------------------------------------------------------------- /TestHost/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestHost/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestHost/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestHost/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/Info.plist -------------------------------------------------------------------------------- /TestHost/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-SelfSignedCert/HEAD/TestHost/ViewController.swift --------------------------------------------------------------------------------