BlueRSA v1.0.35 Release Notes

Release Date: 2019-05-14 // almost 5 years ago
  • ๐Ÿš€ Pre-Release: Version 1.0

    ๐Ÿ”’ Swift cross-platform RSA wrapper library for RSA encryption and signing. Works on supported Apple platforms (using Security framework). Linux (using OpenSSL) is working but is still a work in progress.

    • CryptorRSA: Utility functions for RSA encryption and signing. Pure Swift

    Prerequisites

    Swift

    • ๐Ÿš€ Swift Open Source swift-4.0.0-RELEASE toolchain ( Minimum REQUIRED for latest release )
    • Swift Open Source swift-5.0-RELEASE toolchain ( Recommended )
    • Swift toolchain included in Xcode Version 10.2 (10E125) or higher.

    ๐ŸŽ macOS

    • macOS 10.12.0 (Sierra) or higher.
      ** ( Note: to use PSS signing and verification requires macOS 10.13 or higher.)
    • Xcode Version 9.0 (9A325) or higher using one of the above toolchains.
    • Xcode Version 10.2 (10E125) or higher using the included toolchain (Recommended).

    iOS

    • iOS 10.0 or higher
      ** ( Note: to use PSS signing and verification requires iOS 11.0 or higher.)
    • Xcode Version 9.0 (9A325) or higher using one of the above toolchains.
    • Xcode Version 10.2 (10E125) or higher using the included toolchain (Recommended).

    ๐Ÿง Linux

    • ๐Ÿšง Work in progress
    • โœ… Ubuntu 16.04 (or 16.10 but only tested on 16.04 and 18.04).
    • One of the Swift Open Source toolchains listed above
    • OpenSSL is provided by the distribution. Note: 1.0.x, 1.1.x and later releases of OpenSSL are supported.

    ๐Ÿ”„ Changes since 1.0.0

    • โž• Added prerequisite that the libssl-dev package is required to be installed when building on Linux.
    • โšก๏ธ Minor license update.
    • ๐Ÿ›  Fixes for Linux running older versions of OpenSSL
    • โšก๏ธ Updates and fixes for Swift 4.1.2, which is now the default version
    • โšก๏ธ Updates for Xcode 10 to project.
    • โž• Added support for CocoaPods.
    • 0๏ธโƒฃ Make Swift 4.2 the default compiler in project.
    • ๐Ÿ‘ Swift 4.2 support. PR #25.
    • 0๏ธโƒฃ Make Swift 4.2 the default compiler in the podspec.
    • ๐Ÿ›  Fixed warning(s) on Linux as result of change to Swift 4.2.
    • โšก๏ธ Update recommendations to Swift 4.2 and Xcode 10.
    • โž• Added support for OpenSSL 1.1.x as well as OpenSSL 1.0.x.
    • โž• Added iOS deployment target to podspec. Fixes issue #27. PR #28.
    • โž• Add full support for iOS 10.3 or higher.
    • โž• Added CI support for building with Swift 5. PR #29.
    • Fixed bug in CryptorRSA.decrypted() function.
    • โœ‚ Removed requirement of Swift 4.2 to support OpenSSL 1.1.x. OpenSSL 1.1.x is now supported using Swift 4.0, 4.1 and 4.2.
    • ๐Ÿ›  Fixed assorted memory leaks. PR #36.
    • ๐Ÿ›  Fixed crash when creating a public key using a base64 encoded string. PR #39.
    • โšก๏ธ Update CI support to use Swift 4.2.3. PR #43
    • โž• Added functionality to make a key pair and pem string. PR #44.
    • โšก๏ธ Update to Swift 5.0. PR #45.
    • โž• Added PSS sign/verify support for macOS 10.13 or higher and iOS 11.0 or higher and tvOS 11.0 or higher and watchOS 4.0 or higher. PR #46
    • Changed availability of APIs to require iOS 10.3 at a minimum for iOS builds. PR #48
    • Fixed warning due to new availability checks.
    • โž• Add support for PKCS8 private keys on macOS. PR #49
    • ๐Ÿ— Enable build on Xcode 11. PR #50
    • ๐ŸŽ Enable compiling on MacOS Catalyst. PR #60