mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-04 04:19:09 +00:00
mkdir -p docs/modules/ROOT/ mkdir -p docs/modules/ROOT/pages/ git checkout antora-2.x docs/antora.yml git checkout antora-2.x docs/modules/ROOT/nav.adoc mv docs/manual/src/docs/asciidoc/images docs/modules/ROOT/ mv docs/manual/src/docs/asciidoc/_includes/* docs/modules/ROOT/pages/ cp ~/code/rwinch/spring-reference/*antora* ~/code/spring-projects/spring-security/ mv docs/modules/ROOT/pages/about docs/modules/ROOT/pages/overview
13 lines
559 B
Plaintext
13 lines
559 B
Plaintext
[[authentication]]
|
|
= Authentication
|
|
|
|
Spring Security provides comprehensive support for https://en.wikipedia.org/wiki/Authentication[authentication].
|
|
Authentication is how we verify the identity of who is trying to access a particular resource.
|
|
A common way to authenticate users is by requiring the user to enter a username and password.
|
|
Once authentication is performed we know the identity and can perform authorization.
|
|
// FIXME: Link authorization to authorization
|
|
|
|
include::supported.adoc[leveloffset=+1]
|
|
|
|
include::password-storage.adoc[leveloffset=+1]
|