OpenSSL CocoaPods, Carthage and Swift Package Manager package for iOS, macOS, tvOS, visionOS. A complete solution to OpenSSL. The package comes with precompiled libraries and includes a script to build newer versions if necessary.
This repository exists to vendor OpenSSL.xcframework as SwiftPM package. The binary is build as part of main repository: https://github.com/krzyzanowskim/OpenSSL
dependencies: [
.package(url: "https://github.com/krzyzanowskim/OpenSSL-Package.git", from: "3.1.5003")
]
and then as a dependency for the Package target utilizing OpenSSL:
.target(
name: "MyApp",
dependencies: [
.product(name: "OpenSSL", package: "OpenSSL")
]
),