SwiftyRSA v1.0.0 Release Notes

Release Date: 2017-02-02 // about 7 years ago
  • 💥 Breaking changes

    For its 1.0 version, SwiftyRSA is getting an architecture overhaul to ensure separation of concerns and code clarity. We're introducing the following classes:

    • PublicKey/PrivateKey allow to extract a key from a PEM/DER/base64 string and now includes helpers like PublicKey(pemNamed: "public").
    • ClearMessage/EncryptedMessage represents a clear or encrypted message to process through the RSA algorithm.
    • Signature represents a message's signature that can be verified with a public key.

    We recommend to check out the new [usage instructions](./README.md) to migrate code from 0.x versions of SwiftyRSA.