vapor / open-crypto

🔑 Hashing (BCrypt, SHA2, HMAC), encryption (AES), public-key (RSA), and random data generation.
MIT License
134 stars 34 forks source link

Using with iOS #90

Closed mattmaddux closed 4 years ago

mattmaddux commented 5 years ago

I'm guessing there is no way to include this in an iOS project? I'm using Vapor on my backend and it would be really convenient to use the same library for encrypting at the server and decrypting at the client side.

d4r1091 commented 5 years ago

@mattmaddux if you are using SwiftPackageManager it should be easy to include.

add this: .package(url: "https://github.com/vapor/open-crypto.git", .branch("master")), in your dependencies' array

0xTim commented 4 years ago

Closing as Swift Crypto is now used instead of this library