summaryrefslogtreecommitdiffstats
path: root/Core/Encoder
Commit message (Collapse)AuthorAgeFilesLines
* fix some docblocksChristian Flothmann2014-08-022-0/+4
|
* fixed types in phpdocsFabien Potencier2014-04-162-3/+3
|
* made {@inheritdoc} annotations consistent across the boardFabien Potencier2014-04-161-1/+1
|
* made phpdoc types consistent with those defined in HackFabien Potencier2014-04-154-7/+7
|
* Update BCryptPasswordEncoder.phpv2.3.11szymek2014-02-191-0/+1
|
* removed unneeded use statementsFabien Potencier2014-01-011-1/+0
|
* Merge branch '2.2' into 2.3v2.3.6Fabien Potencier2013-10-105-3/+42
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 2.2: bumped Symfony version to 2.2.10 updated VERSION for 2.2.9 update CONTRIBUTORS for 2.2.9 updated CHANGELOG for 2.2.9 [Security] limited the password length passed to encoders assets:install command should mirror .dotfiles (.htaccess) PoFileDumper - PO headers removed whitespaces Conflicts: src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/Security/Core/Encoder/BCryptPasswordEncoder.php
| * [Security] limited the password length passed to encodersv2.2.9Fabien Potencier2013-10-105-2/+45
| |
* | Set cost type to integerv2.3.5datibbaw2013-09-271-1/+1
| | | | | | | | This seems to be a remnant of when the code dealt with crypt() directly. The password_hash() function expects the cost option to be an LVAL (it does a type conversion for strings).
* | [Security] fixed usage of the salt for the bcrypt encoder (refs #8210)Fabien Potencier2013-06-131-1/+11
| |
* | [Security] Disabled the BCryptPasswordEncoder tests for PHP versions lower ↵Jakub Zalas2013-05-101-1/+11
| | | | | | | | | | | | than 5.3.7. See https://github.com/ircmaxell/password_compat/issues/10#issuecomment-11203833.
* | [Security] added an exception when the BCrypt encoder cannot be used (refs ↵Fabien Potencier2013-04-261-0/+4
| | | | | | | | #7853)
* | [Security] tweaked previous commitFabien Potencier2013-04-251-3/+1
| |
* | Outsource all the BCrypt heavy lifting to a libraryElnur Abdurrakhimov2013-04-251-94/+7
| |
* | [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-2/+2
|
* fixed CSFabien Potencier2013-02-051-12/+14
|
* Added BCrypt password encoder.Elnur Abdurrakhimov2013-02-051-0/+146
|
* Fixed most of the docblocks/unused namespacesFlorin Patan2012-12-192-0/+4
|
* rename String to StringUtilsFabien Potencier2012-10-281-2/+2
|
* moved the secure random class from JMSSecurityExtraBundle to Symfony (closes ↵Fabien Potencier2012-10-281-10/+3
| | | | #3595)
* Merge branch '2.1'Fabien Potencier2012-10-181-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 2.1: (28 commits) Delete use of CreationExeption [Form] Fixed error message in PropertyPath to not advice to use a non-existing feature [Form] Fixed creation of multiple money fields with different currencies [Form] Fixed setting the "data" option to an object in "choice" and "entity" type Fixed Serbian plural translations. Fixed IPv6 Check in RequestMatcher Fix typo change what I think is a typo [Console] Fix error when mode is not in PATH [WebProfilerBundle] fixed macro usage (to be forward compatible with Twig 2.x) Change monolog require-dev to use the branch alias instead of dev-master [FrameworkBundle] partially reverted previous merge [2.1] Added missing error return codes in commands Made the router lazy when setting the context [WebProfilerBundle] fixed typos Fix incorrect variable in FileProfilerStorage UnitTest fix UnitTest fix added a unit test fixed #5384 ...
| * change what I think is a typoGrégoire Paris2012-10-161-1/+1
| |
* | [Security] Added Pbkdf2PasswordEncoderSebastiaan Stok2012-10-081-0/+97
|/ | | | | | | | | | | | | | | | [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
* fixed CSFabien Potencier2012-07-093-5/+3
|
* [Security] fixed exception message in EncoderFactoryDouglas Greenshields2012-06-201-1/+1
|
* [Security] Fix retrieval of encoder when configured for concrete classesAlexander2012-06-181-1/+1
|
* [Security] allowed class names to be passed as an argument to ↵Fabien Potencier2012-06-182-6/+8
| | | | EncoderFactoryInterface::getEncoder()
* fixed phpdoc @param alignmentFabien Potencier2012-05-151-1/+1
|
* add missing class var; add phpdocsGordon Franke2012-01-162-0/+6
|
* [DoctrineBridge] fixed some CSFabien Potencier2011-12-132-1/+3
|
* fixed CSFabien Potencier2011-06-082-2/+2
|
* [Security] various changes, see belowJohannes Schmitt2011-03-104-12/+12
| | | | | | - visibility changes from protected to private - AccountInterface -> UserInterface - SecurityContext::vote() -> SecurityContext::isGranted()
* replaced symfony-project.org by symfony.comFabien Potencier2011-03-066-10/+10
|
* [Security] changed defaults for MessageDigestEncoderJohannes Schmitt2011-03-051-1/+1
| | | | | - encode_as_base64 set to true - iterations increased to 5000 from 1
* [Security] improved entropy to make collision attacks harderJohannes Schmitt2011-03-051-1/+1
|
* [Security] Removed useless elsePascal Borreli2011-02-271-2/+2
|
* [Security] simplified encoder factory implementationJohannes Schmitt2011-02-141-29/+21
|
* namespace changesJohannes M. Schmitt2011-01-266-0/+353
Symfony\Component\Security -> Symfony\Component\Security\Core Symfony\Component\Security\Acl remains unchanged Symfony\Component\HttpKernel\Security -> Symfony\Component\Security\Http