diff options
author | mkanat%bugzilla.org <> | 2009-01-02 10:11:47 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-01-02 10:11:47 +0100 |
commit | 179e06d7c93760d9764bed65295a95fe0930fc4d (patch) | |
tree | 1692be72b3e74370d175aed81372b7462b55f7df /Bugzilla/Install | |
parent | 5c8dab4502c311a7d823171b4c89aaffc2e9761b (diff) | |
download | bugzilla-179e06d7c93760d9764bed65295a95fe0930fc4d.tar.gz bugzilla-179e06d7c93760d9764bed65295a95fe0930fc4d.tar.xz |
Bug 211006: Make Bugzilla use SHA-256 instead of crypt() to store hashed passwords in the database
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 5456fc7d4..2630a4104 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -65,6 +65,11 @@ sub REQUIRED_MODULES { version => (vers_cmp($perl_ver, '5.10') > -1) ? '3.33' : '3.21' }, { + package => 'Digest-SHA', + module => 'Digest::SHA', + version => 0 + }, + { package => 'TimeDate', module => 'Date::Format', version => '2.21' |