From ee53497692f4ebedb1c3a90e9e253ce72631c005 Mon Sep 17 00:00:00 2001 From: mmeyer2k Date: Thu, 5 Mar 2020 16:51:01 -0600 Subject: [PATCH] no message --- docs/CHANGELOG.md | 3 ++- docs/UPGRADE.md | 4 ++-- tests/AesTest.php | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 56193128..6e084427 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,12 +1,13 @@ # Changes in Dcrypt ## 13.1.1 +- Add test class for `Aes` static helper object - Add base64 decode failure exception message for clarity ## 13.1.0 - Only require 32 byte keys from now on - Remove key randomness testing in favor of trusting devs -- Add "Aes" as shorthand alias for "Aes256Gcm" to prevent typos +- Add `Aes` as shorthand alias for `Aes256Gcm` to prevent typos ## 13.0.0 - Skip validating key when decrypting diff --git a/docs/UPGRADE.md b/docs/UPGRADE.md index db44f266..f6787f9e 100644 --- a/docs/UPGRADE.md +++ b/docs/UPGRADE.md @@ -1,5 +1,5 @@ # Upgrade from 12.x to 13.x -- Anything encrypted with GCM or CCM will not be decryptable anymore due to change in tag sizes +- Anything encrypted with `GCM` or `CCM` will not be decryptable anymore due to change in tag sizes # Upgrade from 11.x to 12.x - Upgrade to minimum 2048 byte keys @@ -25,7 +25,7 @@ This is a major refactor of the core of dcrypt to focus on the most important fe Version 9 is a MAJOR update to dcrypt and breaks almost all backward compatibility. It removes all legacy crutches and moves to use more a more modern design. -- All data encrypted with AesCtr and AesCbc prior to 9.0 will not be compatible in 9.0. +- All data encrypted with `AesCtr` and `AesCbc` prior to 9.0 will not be compatible in 9.0. - OpenSSL based decryption wrapper functions no longer need to pass the `$cost` parameter. - All hashes created with `Hash` in prior versions are no longer compatible. - Hashes generated by `Hash::make` are now 60 bytes instead of 64 diff --git a/tests/AesTest.php b/tests/AesTest.php index 0f087034..8624d5e2 100644 --- a/tests/AesTest.php +++ b/tests/AesTest.php @@ -6,4 +6,4 @@ class AesTest extends Aes256GcmTest { -} \ No newline at end of file +}