Skip to content

krzyzanowskim/OpenSSL-Package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

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.1.5007")
]

and then as a dependency for the Package target utilizing OpenSSL:

.target(
    name: "MyApp",
    dependencies: [
        .product(name: "OpenSSL", package: "OpenSSL-Package")
    ]
),

Authors

Marcin Krzyżanowski