Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeyer2k committed Mar 5, 2020
1 parent f63c252 commit ee53497
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/UPGRADE.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/AesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

class AesTest extends Aes256GcmTest
{
}
}

0 comments on commit ee53497

Please sign in to comment.