13 lines
559 B
Plaintext
Raw Normal View History

[[authentication]]
2019-11-27 08:05:44 -06:00
= 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.
2019-11-27 08:05:44 -06:00
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
2019-11-27 08:05:44 -06:00
include::supported.adoc[leveloffset=+1]
include::password-storage.adoc[leveloffset=+1]