diff options
author | Christian Flothmann <christian.flothmann@xabbuh.de> | 2015-11-28 10:18:46 +0100 |
---|---|---|
committer | Christian Flothmann <christian.flothmann@xabbuh.de> | 2015-11-28 10:30:56 +0100 |
commit | d4ae640fd34a799439436bfd5ba5bf4b2a619929 (patch) | |
tree | dab291db740725e6c97024941ae2684c0c5db6bc /Http/Firewall | |
parent | 7fb58694400f63e4f01e0bb9750c04d071524619 (diff) | |
download | symfony-security-d4ae640fd34a799439436bfd5ba5bf4b2a619929.zip symfony-security-d4ae640fd34a799439436bfd5ba5bf4b2a619929.tar.gz symfony-security-d4ae640fd34a799439436bfd5ba5bf4b2a619929.tar.bz2 |
[Security] remove deprecated HTTP digest auth key
Diffstat (limited to 'Http/Firewall')
-rw-r--r-- | Http/Firewall/DigestAuthenticationListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/DigestAuthenticationListener.php b/Http/Firewall/DigestAuthenticationListener.php index 41e5d6d..ef723ea 100644 --- a/Http/Firewall/DigestAuthenticationListener.php +++ b/Http/Firewall/DigestAuthenticationListener.php @@ -78,7 +78,7 @@ class DigestAuthenticationListener implements ListenerInterface } try { - $digestAuth->validateAndDecode($this->authenticationEntryPoint->getKey(), $this->authenticationEntryPoint->getRealmName()); + $digestAuth->validateAndDecode($this->authenticationEntryPoint->getSecret(), $this->authenticationEntryPoint->getRealmName()); } catch (BadCredentialsException $e) { $this->fail($event, $request, $e); |