aboutsummaryrefslogtreecommitdiffstats
path: root/README.txt
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2016-03-11 17:43:15 +0100
committerDaniel Lange <DLange@git.local>2016-03-11 17:43:15 +0100
commite8e7efbd23bb56136ac538b30e73acaddda92d96 (patch)
treef32f2257c766a0e98a3e8e504d059bf26252f312 /README.txt
parent90cb364f9c7282e00afc05435fab7e62bc190d86 (diff)
downloaddrupal_htpasswdsync-e8e7efbd23bb56136ac538b30e73acaddda92d96.tar.gz
drupal_htpasswdsync-e8e7efbd23bb56136ac538b30e73acaddda92d96.tar.bz2
drupal_htpasswdsync-e8e7efbd23bb56136ac538b30e73acaddda92d96.zip
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 :)
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt13
1 files changed, 12 insertions, 1 deletions
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 --

© 2014-2024 Faster IT GmbH | imprint | privacy policy