浏览代码

Added missing method to HTTP Digest entry point

Stefano Sala 14 年之前
父节点
当前提交
cd40ed43a3
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php

+ 10 - 0
src/Symfony/Component/Security/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;
+    }
 }