diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-07-25 10:49:22 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-07-25 10:49:22 +0200 |
commit | 598e58a42f42eaaf597afdef41137557f8c862fc (patch) | |
tree | 2098036f3a4f3d11e57de3c238fc57de3b1cc48d /Core/Encoder/EncoderFactoryInterface.php | |
parent | 8e84c8e0aa3a9dcc4560f7223636e394c235d839 (diff) | |
parent | 37b68961f133fc8dacc66dcbdaf03e1859122ae0 (diff) | |
download | symfony-security-598e58a42f42eaaf597afdef41137557f8c862fc.zip symfony-security-598e58a42f42eaaf597afdef41137557f8c862fc.tar.gz symfony-security-598e58a42f42eaaf597afdef41137557f8c862fc.tar.bz2 |
feature #11306 [DX] New service to simplify password encoding (aferrandini)
This PR was merged into the 2.6-dev branch.
Discussion
----------
[DX] New service to simplify password encoding
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | yes
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | #11299
| License | MIT
| Doc PR | https://github.com/symfony/symfony-docs/pull/3995
This new service siplifies the way to encode a password. Just get the `security.password_encoder` service and encode the `User` password.
```php
$encoded = $this->container->get('security.password_encoder')
->encodePassword($user, $plainPassword);
$user->setPassword($encoded);
```
Commits
-------
7bc190a New service to simplify password encoding
Diffstat (limited to 'Core/Encoder/EncoderFactoryInterface.php')
0 files changed, 0 insertions, 0 deletions