https://github.com/krzyzanowskim/openssl-package
OpenSSL package for SwiftPM
https://github.com/krzyzanowskim/openssl-package
Last synced: 7 months ago
JSON representation
OpenSSL package for SwiftPM
- Host: GitHub
- URL: https://github.com/krzyzanowskim/openssl-package
- Owner: krzyzanowskim
- Created: 2024-04-29T09:14:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-18T21:27:22.000Z (about 1 year ago)
- Last Synced: 2025-03-18T04:15:39.892Z (7 months ago)
- Language: Swift
- Homepage: https://github.com/krzyzanowskim/OpenSSL
- Size: 15.6 KB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# OpenSSL-Package
OpenSSL [Swift Package Manager](https://swift.org/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
```swift
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:
```swift
.target(
name: "MyApp",
dependencies: [
.product(name: "OpenSSL", package: "OpenSSL-Package")
]
),
```### Authors
[Marcin Krzyżanowski](https://krzyzanowskim.com)