Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 531 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 531 Bytes

CCommonCrypto

This is a CommonCrypto SPM (Swift Package Manager) Package that allows for linking to CommonCrypto. It contains a modulemap file and CommonCrypto headers. The latter is because the headers are not available in a general path – instead they are part of the Xcode bundle and thus not very portable.

Usage

let package = Package(
    name: "YourPackage",
    dependencies: [
        .package(url: "https://github.com/jernejstrasner/CCommonCrypto.git", .branch("master"))
    ],
    targets: [...]
)