From e8e7efbd23bb56136ac538b30e73acaddda92d96 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Fri, 11 Mar 2016 17:43:15 +0100 Subject: Add support for SHA-256-crypt and SHA-512-crypt salted hashes Warning: Database schema change. Using varchar(128) instead of varchar(64) now. Thanks for reading the full git log comment :) --- README.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'README.txt') diff --git a/README.txt b/README.txt index 0baf95b..c6c980f 100644 --- a/README.txt +++ b/README.txt @@ -5,7 +5,18 @@ Mirrored at https://github.com/fasterit/drupal_htpasswdsync This is the Faster IT version of the htpasswdsync module for Drupal 7. We have applied patches and improved over the module hosted on drupal.org. -Please review the git log for details. +This version supports secure (salted) SHA-256-crypt and SHA-512-crypt password +storage. + +Pleas be aware that SHA-512-crypt hashes are larger than the 64 bytes the +original authors of this module specified. So if you are upgrading from a +previous version and not re-installing new, please execute the following +in MySQL: + + use drupal7; # or whatever your Drupal database is + alter table htpasswdsync_htpasswd modify passwd varchar(128); + +For an overview of other changes please review the git log. -- SUMMARY -- -- cgit v1.2.3