aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [feature/passwords] Pass list of default types to passwords managerMarc Alexander2013-10-278-16/+39
| | | | | | | This list is in the order of how the driver types would be used. If a driver is not supported we will try the subsequent one. PHPBB3-11610
* [feature/passwords] Fix tests on PHP < 5.3.3 againMarc Alexander2013-10-273-5/+84
| | | | PHPBB3-11610
* [feature/passwords] Integrate convert_flag with db auth providerMarc Alexander2013-10-255-5/+27
| | | | PHPBB3-11610
* [feature/passwords] Minor cleanup in passwords filesMarc Alexander2013-10-143-6/+1
| | | | PHPBB3-11610
* [feature/passwords] Use passwords manager service instead of functionsMarc Alexander2013-10-135-11/+26
| | | | | | | | | | | The old functions phpbb_hash() and phpbb_check_hash() have been replaced with the passwords manager service in all front-end related files. The phpBB2 converter and the release_3_0_5_rc1 migration file have not been changed. The same applies to the security/hash_test that still tests the function phpbb_check_hash(). This will however make sure that the old function still works. PHPBB3-11610
* [feature/passwords] Use passwords.manager service in login_forum_box()Marc Alexander2013-10-131-3/+5
| | | | | | | Additionally, unused variables have been removed from the globals and the request class is now used instead of the request_var() function. PHPBB3-11610
* [feature/passwords] Use VCHAR_UNI instead of VCHAR_CI for user_passwordsMarc Alexander2013-10-132-2/+2
| | | | PHPBB3-11610
* [feature/passwords] Add functional tests for forum passwordsMarc Alexander2013-10-131-0/+55
| | | | PHPBB3-11610
* [feature/passwords] Modify forum_password column type for new hash typesMarc Alexander2013-10-139-12/+18
| | | | PHPBB3-11610
* [feature/passwords] Remove obsolete hashing functions from functions.phpMarc Alexander2013-10-111-110/+0
| | | | | | These hashing functions have been worked into the salted md5 driver. PHPBB3-11610
* [feature/passwords] Mark old hashing functions as deprecatedMarc Alexander2013-10-111-24/+6
| | | | PHPBB3-11610
* [feature/passwords] Add phpass copyright notice to salted md5 driverMarc Alexander2013-10-111-0/+28
| | | | PHPBB3-11610
* [feature/passwords] Fix tests for 8th bit characters in bcrypt on PHP < 5.3.7Marc Alexander2013-10-101-1/+8
| | | | PHPBB3-11610
* [feature/passwords] Increase test coverage to 100% of methodsMarc Alexander2013-10-102-13/+24
| | | | | | | | Obsolete code that is impossible to hit has been removed and the logic of the salted md5 driver has been changed to correctly implement the phpBB 3.0 phpbb_hash() function. PHPBB3-11610
* [feature/passwords] Increase test coverage to 35 out ouf 36 methodsMarc Alexander2013-10-094-14/+111
| | | | | | | Only one small code part in the salted md5 driver can't be tested right now. Passwords helper and passwords driver helper are now fully covered by tests. PHPBB3-11610
* [feature/passwords] Add tests for unique_id() method in helperMarc Alexander2013-10-091-5/+16
| | | | PHPBB3-11610
* [feature/passwords] Move check for 8-bit characters to bcrypt driverMarc Alexander2013-10-072-10/+10
| | | | PHPBB3-11610
* [feature/passwords] Fix hash_test for use of passwords managerMarc Alexander2013-10-031-1/+4
| | | | PHPBB3-11610
* Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/passwordsMarc Alexander2013-10-0338-337/+388
|\ | | | | | | | | Conflicts: phpBB/includes/functions.php
| * Merge remote-tracking branch 'nickvergessen/ticket/11691' into developDhruv2013-10-024-19/+63
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # By Joas Schilling # Via Joas Schilling * nickvergessen/ticket/11691: [ticket/11691] Fix conversion test [ticket/11691] Fix table names and arguments/docs [ticket/11691] Move purge code into new function [ticket/11691] Fix typo in comment [ticket/11691] Add order by to the query [ticket/11691] Fix some minor comments [ticket/11691] Fix some more problems with softdelete update [ticket/11691] Change detection of effectively_installed() [ticket/11691] Stagger user notification reconversion even more [ticket/11691] Stagger the convertion of soft delete updates
| | * [ticket/11691] Fix conversion testJoas Schilling2013-10-011-1/+1
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Fix table names and arguments/docsJoas Schilling2013-09-261-8/+8
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Move purge code into new functionJoas Schilling2013-09-261-7/+7
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Fix typo in commentJoas Schilling2013-09-261-1/+1
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Add order by to the queryJoas Schilling2013-09-261-1/+2
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Fix some minor commentsJoas Schilling2013-09-261-4/+3
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Fix some more problems with softdelete updateJoas Schilling2013-09-261-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | * wrong order of arguments on sql_query_limit * avoid "BIGINT UNSIGNED value is out of range" errors * increase limit for the loop PHPBB3-11691
| | * [ticket/11691] Change detection of effectively_installed()Joas Schilling2013-09-261-1/+3
| | | | | | | | | | | | | | | | | | | | | When start is set for a migration, it is not yet effectively installed. So we just continue doing it... PHPBB3-11691
| | * [ticket/11691] Stagger user notification reconversion even moreJoas Schilling2013-09-261-7/+24
| | | | | | | | | | | | PHPBB3-11691
| | * [ticket/11691] Stagger the convertion of soft delete updatesJoas Schilling2013-09-261-3/+23
| | | | | | | | | | | | PHPBB3-11691
| * | Merge branch 'develop-olympus' into developAndreas Fischer2013-10-020-0/+0
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11879] Replace .live() with .on() Conflicts: phpBB/styles/prosilver/template/forum_fn.js
| | * \ Merge remote-tracking branch 'cyberalien/ticket/11879' into develop-olympusAndreas Fischer2013-10-021-1/+1
| | |\ \ | | | | | | | | | | | | | | | | | | | | * cyberalien/ticket/11879: [ticket/11879] Replace .live() with .on()
| | | * | [ticket/11879] Replace .live() with .on()Vjacheslav Trushkin2013-10-021-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-11879
| * | | | Merge pull request #1744 from EXreaction/ticket/11878Joas Schilling2013-10-011-2/+2
| |\ \ \ \ | | | | | | | | | | | | [ticket/11878] Missing leading \ in dependencies in soft_delete_mcp_modules
| | * | | | [ticket/11878] Missing leading \ in dependencies in soft_delete_mcp_modulesNathan Guse2013-10-021-2/+2
| |/ / / / | | | | | | | | | | | | | | | PHPBB3-11878
| * | | | Merge pull request #1735 from nickvergessen/ticket/11852Nathan Guse2013-09-3027-292/+285
| |\ \ \ \ | | | | | | | | | | | | Ticket/11852 filesystem class must not depend on a web request
| | * | | | [ticket/11852] Add class fileJoas Schilling2013-09-271-0/+175
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11852
| | * | | | [ticket/11852] Move tests to folder with new class nameJoas Schilling2013-09-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11852
| | * | | | [ticket/11852] Split filesystem and path_helper into 2 classesJoas Schilling2013-09-2626-290/+108
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11852
| * | | | | Merge branch 'develop-olympus' into developNils Adermann2013-09-303-15/+18
| |\ \ \ \ \ | | | |/ / / | | |/| | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11876] Replace MD5 with SHA256. [ticket/11876] Move checksum generation from build PHP files to phing build.xml
| | * | | | [ticket/11876] Replace MD5 with SHA256.Andreas Fischer2013-09-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11876
| | * | | | [ticket/11876] Move checksum generation from build PHP files to phing build.xmlAndreas Fischer2013-09-303-15/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also removes paths from the checksum files. PHPBB3-11876
| * | | | | Merge branch 'develop-olympus' into developAndreas Fischer2013-09-301-1/+1
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [develop-olympus] Build against 3.0.12 instead of 3.0.12-RC3. Tag exists now. Conflicts: build/build.xml
| | * | | | [develop-olympus] Build against 3.0.12 instead of 3.0.12-RC3. Tag exists now.Andreas Fischer2013-09-301-1/+1
| | | | | |
| * | | | | Merge branch 'develop-olympus' into developAndreas Fischer2013-09-283-0/+16
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [prep-release-3.0.12] Update changelog for 3.0.12 release. [ticket/11873] Add unit test for large password input. [ticket/11873] Do not hash very large passwords in order to safe resources.
| | * | | | Merge branch 'prep-release-3.0.12' into develop-olympusAndreas Fischer2013-09-283-0/+16
| | |\ \ \ \ | | | |_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.12: [prep-release-3.0.12] Update changelog for 3.0.12 release. [ticket/11873] Add unit test for large password input. [ticket/11873] Do not hash very large passwords in order to safe resources.
| | | * | | [prep-release-3.0.12] Update changelog for 3.0.12 release.Andreas Fischer2013-09-281-0/+1
| | | | | |
| | | * | | Merge branch 'ticket/11873' into prep-release-3.0.12Andreas Fischer2013-09-282-0/+15
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ticket/11873: [ticket/11873] Add unit test for large password input. [ticket/11873] Do not hash very large passwords in order to safe resources.
| | | | * | | [ticket/11873] Add unit test for large password input.Joas Schilling2013-09-281-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The password should be rejected quite fast. PHPBB3-11873
| | | | * | | [ticket/11873] Do not hash very large passwords in order to safe resources.Joas Schilling2013-09-281-0/+7
| | | |/ / / | | | | | | | | | | | | | | | | | | PHPBB3-11873