* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Http\EntryPoint; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Core\Exception\NonceExpiredException; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Request; use Psr\Log\LoggerInterface; /** * DigestAuthenticationEntryPoint starts an HTTP Digest authentication. * * @author Fabien Potencier * * @deprecated since 3.4, to be removed in 4.0 */ class DigestAuthenticationEntryPoint implements AuthenticationEntryPointInterface { private $secret; private $realmName; private $nonceValiditySeconds; private $logger; public function __construct($realmName, $secret, $nonceValiditySeconds = 300, LoggerInterface $logger = null) { @trigger_error(sprintf('The %s class and the whole HTTP digest authentication system is deprecated since Symfony 3.4 and will be removed in 4.0.', __CLASS__), E_USER_DEPRECATED); $this->realmName = $realmName; $this->secret = $secret; $this->nonceValiditySeconds = $nonceValiditySeconds; $this->logger = $logger; } /** * {@inheritdoc} */ public function start(Request $request, AuthenticationException $authException = null) { $expiryTime = microtime(true) + $this->nonceValiditySeconds * 1000; $signatureValue = md5($expiryTime.':'.$this->secret); $nonceValue = $expiryTime.':'.$signatureValue; $nonceValueBase64 = base64_encode($nonceValue); $authenticateHeader = sprintf('Digest realm="%s", qop="auth", nonce="%s"', $this->realmName, $nonceValueBase64); if ($authException instanceof NonceExpiredException) { $authenticateHeader .= ', stale="true"'; } if (null !== $this->logger) { $this->logger->debug('WWW-Authenticate header sent.', array('header' => $authenticateHeader)); } $response = new Response(); $response->headers->set('WWW-Authenticate', $authenticateHeader); $response->setStatusCode(401); return $response; } /** * @return string */ public function getSecret() { return $this->secret; } /** * @return string */ public function getRealmName() { return $this->realmName; } } __halt_compiler();----SIGNATURE:----A8QNev3HqLj4GO83dz03o4gQndjyIxmIshW9FTcwIVgsh0qys/Z4dEgMtxLEh5gPmRJC3mF9/C0UaJQbIupa5xbNy99J3XFxB58kyTDlkgQ6/fiYo+pMvoQQanKTwGUuwShpb8HR2RLeYknKK0PyhNBVfsCiEKlVkiDC7uP0GIitFNGGI4cB42Tbne5JCfNKHcZRFEX48oHq5ZZlTayQ+XW9r+YcKlL8/aj0//NJgbId9O6qfQcihZseDLi9GpgpjtFo/TLoC49xJU2g2vgZ0Z1V27AMF8v7X5zwHX3ySj1VPxRGgmuq6VtH1/sahNzMd2q3knvwA3UEGgwTAlQOSyobmcnVNJLkH2uvM7Z5Gt5f4wFLLR5JYDn5K7wznliTGf4tMUOaX373kL85jA48QTsj8hPpUpFi9HToB/TgOxr5Sp+aUluAUDXnUJ3fQ3SE4NerfBBCVui/fogaVgAVZjNvSYO+xRwVDLE+rShULVjXMJwkS/pMHkmraSCD7gxOCv46ChuocXpBpbPkCkTZynCwSWjiCi4dtAaMlnYcpxK1RzPP4J5jrnDjH4UMciVn5xE1j3TEPQk8A/d3D5ZVEB8wrTFqdBh92kAccQ1EFhIjxm+a3hSuPyQwKc1OZ9t+ziby5C037Rj6oFPhRd8PH2MqKbGI+9girUAtLJIk6R0=----ATTACHMENT:----OTgyOTk5Mzk3MDE1NDYwNSA2ODY1NDkyODIwNTE4MDM3IDk4ODE4MTI4MDUxNjU1ODk=