8000 Deprecated HTTP-Digest authentication · symfony/symfony-docs@530c2fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 530c2fb

Browse files
committed
Deprecated HTTP-Digest authentication
1 parent f8ddf1f commit 530c2fb

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

components/security.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ The Security Component
66

77
The Security component provides a complete security system for your web
88
application. It ships with facilities for authenticating using HTTP basic
9-
or digest authentication, interactive form login or X.509 certificate
10-
login, but also allows you to implement your own authentication strategies.
11-
Furthermore, the component provides ways to authorize authenticated users
12-
based on their roles, and it contains an advanced ACL system.
9+
authentication, interactive form login or X.509 certificate login, but also
10+
allows you to implement your own authentication strategies. Furthermore, the
11+
component provides ways to authorize authenticated users based on their
12+
roles, and it contains an advanced ACL system.
1313

1414
Installation
1515
------------

components/security/authentication.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ firewall map is able to extract the user's credentials from the current
1010
a token, containing these credentials. The next thing the listener should
1111
do is ask the authentication manager to validate the given token, and return
1212
an *authenticated* token if the supplied credentials were found to be valid.
13-
The listener should then store the authenticated token using
13+
The listener should then store the authenticated token using
1414
:class:`the token storage <Symfony\\Component\\Security\\Core\\Authentication\\Token\\Storage\\TokenStorageInterface>`::
1515

1616
use Symfony\Component\Security\Http\Firewall\ListenerInterface;
@@ -306,7 +306,7 @@ logged into your website. It is important to distinguish this action from
306306
non-interactive authentication methods, such as:
307307

308308
* authentication based on your session.
309-
* authentication using a HTTP basic or HTTP digest header.
309+
* authentication using a HTTP basic header.
310310

311311
You could listen on the ``security.interactive_login`` event, for example, in
312312
order to give your user a welcome flash message every time they log in.

reference/configuration/security.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,10 @@ multiple firewalls, the "context" could actually be shared:
690690
HTTP-Digest Authentication
691691
--------------------------
692692

693+
.. versionadded:: 3.4
694+
HTTP-Digest Authentication was deprecated in Symfony 3.4 and it will be
695+
removed in Symfony 4.0.
696+
693697
To use HTTP-Digest authentication you need to provide a realm and a secret:
694698

695699
.. configuration-block::

0 commit comments

Comments
 (0)
0