Skip to content

AWS Encryption SDK 1.6.1 Release -- 2019-10-29

Choose a tag to compare

@SalusaSecondus SalusaSecondus released this 29 Oct 22:42
74c85cb

Deprecation Warnings

  • Deprecated AwsCrypto.encryptString() and AwsCrypto.decryptString().
    Replace your calls to these methods with calls to AwsCrypto.encryptData() and AwsCrypto.decryptData().
    Unlike the deprecated methods, these methods don't perform any Base64 encoding or decoding, so they are fully compatible with other language implementations of the AWS Encryption SDK.

    If you need Base64 encoding or decoding for your application, you can add it outside of the AWS Encryption SDK. PR #120

Patches

  • Correctly validate version PR #116
  • ParsedCiphertext now handles truncated input properly PR #119

Maintenance

  • Add support for standard test vectors via testVectorZip system property. PR #127
  • Remove all explicit cryptographic dependencies on BouncyCastle. The AWS Encryption SDK for Java still uses Bouncy Castle for other tasks. PRs
    #128, #129, #130, #131, and #132.