summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/Provider/AnonymousAuthenticationProvider.php
diff options
context:
space:
mode:
authorNicolas Grekas <nicolas.grekas@gmail.com>2015-07-02 08:18:34 +0200
committerNicolas Grekas <nicolas.grekas@gmail.com>2015-07-02 08:18:34 +0200
commitbda622ef2c5226c3123df629167b0eeccb7127e7 (patch)
tree1a1c7a4ed5f9c4acc1bd02382daf308157f94db0 /Core/Authentication/Provider/AnonymousAuthenticationProvider.php
parent3b3cfe0bb49fc0e330dd731705bff6cd8d6f93f6 (diff)
parent2a1a7a58fbecdb00d8a2546252e5e276f2a1d53c (diff)
downloadsymfony-security-bda622ef2c5226c3123df629167b0eeccb7127e7.zip
symfony-security-bda622ef2c5226c3123df629167b0eeccb7127e7.tar.gz
symfony-security-bda622ef2c5226c3123df629167b0eeccb7127e7.tar.bz2
Merge branch '2.8'
* 2.8: [travis] start hhvm first [DX] [Security] Renamed Token#getKey() to getSecret() [Validator] always evaluate binary format when changed Conflicts: .travis.yml src/Symfony/Component/Security/Http/composer.json
Diffstat (limited to 'Core/Authentication/Provider/AnonymousAuthenticationProvider.php')
-rw-r--r--Core/Authentication/Provider/AnonymousAuthenticationProvider.php16
1 files changed, 11 insertions, 5 deletions
diff --git a/Core/Authentication/Provider/AnonymousAuthenticationProvider.php b/Core/Authentication/Provider/AnonymousAuthenticationProvider.php
index 7fbbf85..ff3d15f 100644
--- a/Core/Authentication/Provider/AnonymousAuthenticationProvider.php
+++ b/Core/Authentication/Provider/AnonymousAuthenticationProvider.php
@@ -22,16 +22,22 @@ use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
*/
class AnonymousAuthenticationProvider implements AuthenticationProviderInterface
{
- private $key;
+ /**
+ * Used to determine if the token is created by the application
+ * instead of a malicious client.
+ *
+ * @var string
+ */
+ private $secret;
/**
* Constructor.
*
- * @param string $key The key shared with the authentication token
+ * @param string $secret The secret shared with the AnonymousToken
*/
- public function __construct($key)
+ public function __construct($secret)
{
- $this->key = $key;
+ $this->secret = $secret;
}
/**
@@ -43,7 +49,7 @@ class AnonymousAuthenticationProvider implements AuthenticationProviderInterface
return;
}
- if ($this->key !== $token->getKey()) {
+ if ($this->secret !== $token->getSecret()) {
throw new BadCredentialsException('The Token does not contain the expected key.');
}