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 :) --- HTPasswdSync.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'HTPasswdSync.install') diff --git a/HTPasswdSync.install b/HTPasswdSync.install index e83c828..f35f2f0 100644 --- a/HTPasswdSync.install +++ b/HTPasswdSync.install @@ -30,14 +30,14 @@ function htpasswdsync_db_schema() { 'username' => array( 'description' => 'The {users}.username.', 'type' => 'varchar', - 'length' => 64, + 'length' => 128, 'not null' => true, 'default' => 0, ), 'passwd' => array( 'description' => 'The crypted (crypt) password.', 'type' => 'varchar', - 'length' => 64, + 'length' => 128, 'not null' => true, 'default' => '', ), -- cgit v1.2.3