An open API service indexing awesome lists of open source software.

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

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)