├── .gitignore ├── LICENSE ├── OpenSSL-ContainerFramework.json ├── OpenSSL-ContainerFramework.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── jderry.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── OpenSSL-Container.xcscheme └── xcuserdata │ └── jderry.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── OpenSSL-ContainerFramework ├── Info.plist └── OpenSSL-Container.h ├── README.md ├── assets ├── AppleTV │ └── Info.plist ├── Catalyst │ └── Info.plist ├── MacOSX │ └── Info.plist ├── Watch │ └── Info.plist └── iPhone │ └── Info.plist ├── config └── 20-all-platforms.conf ├── create-openssl-framework.sh ├── include ├── LICENSE └── opensslconf-template.h └── scripts ├── lib-build-openssl.sh ├── lib-frameworks.sh ├── lib-min-sdk-versions.sh └── lib-spinner.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.json -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.xcodeproj/project.xcworkspace/xcuserdata/jderry.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.xcodeproj/project.xcworkspace/xcuserdata/jderry.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.xcodeproj/xcshareddata/xcschemes/OpenSSL-Container.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.xcodeproj/xcshareddata/xcschemes/OpenSSL-Container.xcscheme -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework.xcodeproj/xcuserdata/jderry.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework.xcodeproj/xcuserdata/jderry.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework/Info.plist -------------------------------------------------------------------------------- /OpenSSL-ContainerFramework/OpenSSL-Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/OpenSSL-ContainerFramework/OpenSSL-Container.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/README.md -------------------------------------------------------------------------------- /assets/AppleTV/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/assets/AppleTV/Info.plist -------------------------------------------------------------------------------- /assets/Catalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/assets/Catalyst/Info.plist -------------------------------------------------------------------------------- /assets/MacOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/assets/MacOSX/Info.plist -------------------------------------------------------------------------------- /assets/Watch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/assets/Watch/Info.plist -------------------------------------------------------------------------------- /assets/iPhone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/assets/iPhone/Info.plist -------------------------------------------------------------------------------- /config/20-all-platforms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/config/20-all-platforms.conf -------------------------------------------------------------------------------- /create-openssl-framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/create-openssl-framework.sh -------------------------------------------------------------------------------- /include/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/include/LICENSE -------------------------------------------------------------------------------- /include/opensslconf-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/include/opensslconf-template.h -------------------------------------------------------------------------------- /scripts/lib-build-openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/scripts/lib-build-openssl.sh -------------------------------------------------------------------------------- /scripts/lib-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/scripts/lib-frameworks.sh -------------------------------------------------------------------------------- /scripts/lib-min-sdk-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/scripts/lib-min-sdk-versions.sh -------------------------------------------------------------------------------- /scripts/lib-spinner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthisar/openssl-xcframeworks/HEAD/scripts/lib-spinner.sh --------------------------------------------------------------------------------