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