summaryrefslogtreecommitdiffstats
path: root/Tests/Core/Encoder
Commit message (Collapse)AuthorAgeFilesLines
* [Security] Disabled the BCryptPasswordEncoder tests for PHP versions lower ↵Jakub Zalas2013-05-101-0/+11
| | | | | | than 5.3.7. See https://github.com/ircmaxell/password_compat/issues/10#issuecomment-11203833.
* Outsource all the BCrypt heavy lifting to a libraryElnur Abdurrakhimov2013-04-251-55/+5
|
* [CS Fix] Consistent coding-style of concatenation operator usageDariusz Górecki2013-04-021-1/+1
|
* [Security] fixed interface implementation (closes #6974)Fabien Potencier2013-02-051-6/+6
|
* Added BCrypt password encoder.Elnur Abdurrakhimov2013-02-051-0/+112
|
* [Security] Added Pbkdf2PasswordEncoderSebastiaan Stok2012-10-081-0/+45
| | | | | | | | | | | | | | | | [Security] changed default iterations of Pbkdf2PasswordEncoder to 1000 instead of 5000 [Security] Improved description of PBKDF2 encoder [SecurityBundle] added PBKDF2 PasswordEncoder updated CHANGELOG.md [Security] Use the build-in hash_pbkdf2() when available [SecurityBundle] added information about hash_algorithm for configuration [Security] always check algorithm and fixed CS
* [Security] removed test that fail on PHP 5.3.3Fabien Potencier2012-06-181-4/+0
|
* [Security] fixed some unit tests for PHP 5.3.3 (see ↵Fabien Potencier2012-06-181-4/+17
| | | | https://bugs.php.net/bug.php?id=53727)
* [Security] Add failing testcases for EncoderFactoryAlexander2012-06-181-0/+23
|
* [Security] allowed class names to be passed as an argument to ↵Fabien Potencier2012-06-181-0/+19
| | | | EncoderFactoryInterface::getEncoder()
* moved component and bridge unit tests to the src/ directoryFabien Potencier2012-03-294-0/+212
This is the first step to make each Symfony Component and Bridge self-contained.