openssl

0.0.3

All inclusive Swift package to use OpenSSL 1.1.1d from Swift (include Mac arm)
nferruzzi/openssl

What's New

2021-02-10T20:53:08Z

openssl 1.1.1 for Swift 5.x

All inclusive Swift package to import OpenSSL 1.1.1h from Swift and ObjC.

The binary xcframework is provided via zip as required by Swift Package, built using the openssl-apple project.

Included platforms: Mac (arm, x86), iOS, WatchOS, tvOS and simulators.

This packages is based on:

  1. XCFramework build script: https://github.com/keeshux/openssl-apple
  2. OpenSSL shim and inline functions: https://github.com/Kitura/OpenSSL

Tips:

If you make your own version of the frameworks don't forget their symbolic links:

  • create a zip using --symlinks ie: zip --symlinks -r openssl_1_1_1d.xcframework.zip openssl.xcframework
  • or copy the xcframework using cp -R ...

otherwise you may experience codes-signing problems due to bogus frameworks.

Example

...
    dependencies: [
        .package(name: "openssl", url: "https://github.com/nferruzzi/openssl", from: "0.0.2"),
    ],
    targets: [
        .target(
            name: "MyApp",
            dependencies: [.product(name: "OpenSSL", package: "openssl")]),
    ]

and then you can

import OpenSSL
...
        OpenSSL_SSL_init()
        ERR_load_CRYPTO_strings()

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Mar 28 2024 16:06:52 GMT-0900 (Hawaii-Aleutian Daylight Time)