index.adoc 559 B

123456789101112
  1. [[authentication]]
  2. = Authentication
  3. Spring Security provides comprehensive support for https://en.wikipedia.org/wiki/Authentication[authentication].
  4. Authentication is how we verify the identity of who is trying to access a particular resource.
  5. A common way to authenticate users is by requiring the user to enter a username and password.
  6. Once authentication is performed we know the identity and can perform authorization.
  7. // FIXME: Link authorization to authorization
  8. include::supported.adoc[leveloffset=+1]
  9. include::password-storage.adoc[leveloffset=+1]