You are here

CHANGELOG.txt in AES encryption 7

Same filename and directory in other branches
  1. 8.2 CHANGELOG.txt
  2. 5 CHANGELOG.txt
  3. 6 CHANGELOG.txt
7.x-1.8 -> 7.x-1.9

  * Implemented hook_aes_config_change(). https://drupal.org/node/1415550 .

  * Password viewing method is more secure for non-JS users. https://drupal.org/node/1114780 .

  * Fixed bug with unattended installation. Issue: https://drupal.org/node/2394761 .

  * Correct handling the cases when mcrypt became unavailable. Issue: https://drupal.org/node/2088357 .

  * Some documentation clean-up.

7.x-1.7 -> 7.x-1.8

  * Phpseclib: Integrated AES with the libraries API. PHPSeclib now preferable to be placed into libraries.

  * Fixed major bug with changing location of key file, thanks to digitalRoots. Issue: https://drupal.org/node/2188325 .

  * Minor: storing boolean data as a real boolean instead of string, by jurgenhaas.

7.x-1.6 -> 7.x-1.7

  * Fixed critical issue preventing module to normal usage by Aegir hosting system.

7.x-1.4 -> 7.x-1.6

 * By default functionality to tracking and showing user passwords is turned off.

 * Various fixes.

6.x-1.4 -> 7.x-1.4

 * Ported the module to Drupal 7.

6.x-1.3 -> 6.x-1.4

 * This module now supports the AES implementation provided by PHP Secure Communications Library (phpseclib). Which means that this module no longer requires PHP's Mcrypt extension (although it still supports it alongside phpseclib). Thanks to queen.zeal for bringing this library to my attention. Issue: http://drupal.org/node/579858 and of course many thanks to Jim Wigginton for writing this great library, which can be found here http://phpseclib.sourceforge.net/.

 * There's now an automatic trim() on decrypting data. This change is partly because the phpseclib implementation does this, so it's now also done in the mcrypt implementaton to maintain consistency between implementations, and partly because it has caused to some confusion/concern among several users (though it was not actually a bug).

 * Fixed a faulty implemented form. Thanks to rjmackay. Issue: http://drupal.org/node/507892

 * aes_encrypt and aes_decrypt will now return false if passed empty strings instead of raising errors. (Several issues has been discussing this and I believe there has been various reasons to it happening depending on your site settings and installed modules).

 * Requirements are now checked at install, thanks AlexisWilke. Issue: http://drupal.org/node/436368

 * Plus other minor changes which shouldn't affect the function/behavior of this module in any significant way.

5.x-1.2 -> 6.x-1.3
 
 * Ported the module to Drupal 6.
 
 * AES no longer alerts the user about a missing key if the user does not have the administer aes permission. This alert is now also logged in the watchdog.
 
 * Fixed a bug which caused AES encrypted passwords to be created even when this feature was turned off if an existing account was given a new password.

5.x-1.1 -> 5.x-1.2
 
 * Fixed a faulty use of preg_match which caused a warning in PHP 5.2.x.
 
 * A users encrypted password is now deleted along with the user.
 
 * Removed a redundant write to file when saving a key using the file storage method.
 
 * Fixed the anonymous account receiving an encrypted password in some situations.
 
 * Removed an unused menu item.

5.x-1.0 -> 5.x-1.1
 
 * Added option to use 192 or 256 bit versions of the Rijndael algorithms.
 
 * Drupals database abstraction layer is now used properly.
 
 * Added (untested) support for Windows.
 
 * AES-encrypted passwords are now stored separately in their own table instead of replacing the MD5 passwords in the users table.
 
 * Added option to show the decrypted password on another page.
 
 * Plus some other minor changes.

File

CHANGELOG.txt
View source
  1. 7.x-1.8 -> 7.x-1.9
  2. * Implemented hook_aes_config_change(). https://drupal.org/node/1415550 .
  3. * Password viewing method is more secure for non-JS users. https://drupal.org/node/1114780 .
  4. * Fixed bug with unattended installation. Issue: https://drupal.org/node/2394761 .
  5. * Correct handling the cases when mcrypt became unavailable. Issue: https://drupal.org/node/2088357 .
  6. * Some documentation clean-up.
  7. 7.x-1.7 -> 7.x-1.8
  8. * Phpseclib: Integrated AES with the libraries API. PHPSeclib now preferable to be placed into libraries.
  9. * Fixed major bug with changing location of key file, thanks to digitalRoots. Issue: https://drupal.org/node/2188325 .
  10. * Minor: storing boolean data as a real boolean instead of string, by jurgenhaas.
  11. 7.x-1.6 -> 7.x-1.7
  12. * Fixed critical issue preventing module to normal usage by Aegir hosting system.
  13. 7.x-1.4 -> 7.x-1.6
  14. * By default functionality to tracking and showing user passwords is turned off.
  15. * Various fixes.
  16. 6.x-1.4 -> 7.x-1.4
  17. * Ported the module to Drupal 7.
  18. 6.x-1.3 -> 6.x-1.4
  19. * This module now supports the AES implementation provided by PHP Secure Communications Library (phpseclib). Which means that this module no longer requires PHP's Mcrypt extension (although it still supports it alongside phpseclib). Thanks to queen.zeal for bringing this library to my attention. Issue: http://drupal.org/node/579858 and of course many thanks to Jim Wigginton for writing this great library, which can be found here http://phpseclib.sourceforge.net/.
  20. * There's now an automatic trim() on decrypting data. This change is partly because the phpseclib implementation does this, so it's now also done in the mcrypt implementaton to maintain consistency between implementations, and partly because it has caused to some confusion/concern among several users (though it was not actually a bug).
  21. * Fixed a faulty implemented form. Thanks to rjmackay. Issue: http://drupal.org/node/507892
  22. * aes_encrypt and aes_decrypt will now return false if passed empty strings instead of raising errors. (Several issues has been discussing this and I believe there has been various reasons to it happening depending on your site settings and installed modules).
  23. * Requirements are now checked at install, thanks AlexisWilke. Issue: http://drupal.org/node/436368
  24. * Plus other minor changes which shouldn't affect the function/behavior of this module in any significant way.
  25. 5.x-1.2 -> 6.x-1.3
  26. * Ported the module to Drupal 6.
  27. * AES no longer alerts the user about a missing key if the user does not have the administer aes permission. This alert is now also logged in the watchdog.
  28. * Fixed a bug which caused AES encrypted passwords to be created even when this feature was turned off if an existing account was given a new password.
  29. 5.x-1.1 -> 5.x-1.2
  30. * Fixed a faulty use of preg_match which caused a warning in PHP 5.2.x.
  31. * A users encrypted password is now deleted along with the user.
  32. * Removed a redundant write to file when saving a key using the file storage method.
  33. * Fixed the anonymous account receiving an encrypted password in some situations.
  34. * Removed an unused menu item.
  35. 5.x-1.0 -> 5.x-1.1
  36. * Added option to use 192 or 256 bit versions of the Rijndael algorithms.
  37. * Drupals database abstraction layer is now used properly.
  38. * Added (untested) support for Windows.
  39. * AES-encrypted passwords are now stored separately in their own table instead of replacing the MD5 passwords in the users table.
  40. * Added option to show the decrypted password on another page.
  41. * Plus some other minor changes.