diff options
author | Stefano Sala <stefano.sala@spa.it> | 2011-09-06 13:32:33 +0200 |
---|---|---|
committer | Stefano Sala <stefano.sala@spa.it> | 2011-09-06 13:32:33 +0200 |
commit | eb76004f830ee0ec049436c50b27fd306f58c210 (patch) | |
tree | 1c8c34166767443551949e1a78ef9e243d758e2d /Http/EntryPoint | |
parent | faa9ecf147952d035e6f3c41805100bca503e2b3 (diff) | |
download | symfony-security-eb76004f830ee0ec049436c50b27fd306f58c210.zip symfony-security-eb76004f830ee0ec049436c50b27fd306f58c210.tar.gz symfony-security-eb76004f830ee0ec049436c50b27fd306f58c210.tar.bz2 |
Added missing method to HTTP Digest entry point
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r-- | Http/EntryPoint/DigestAuthenticationEntryPoint.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Http/EntryPoint/DigestAuthenticationEntryPoint.php b/Http/EntryPoint/DigestAuthenticationEntryPoint.php index 66f1e42..ec92419 100644 --- a/Http/EntryPoint/DigestAuthenticationEntryPoint.php +++ b/Http/EntryPoint/DigestAuthenticationEntryPoint.php @@ -61,4 +61,14 @@ class DigestAuthenticationEntryPoint implements AuthenticationEntryPointInterfac return $response; } + + public function getKey() + { + return $this->key; + } + + public function getRealmName() + { + return $this->realmName; + } } |