From 38b3752860d85dfe56c2e2d454c3d17b0663d049 Mon Sep 17 00:00:00 2001 From: wu xiangkai Date: Wed, 9 Nov 2022 11:11:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=B8=B8=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Apache Shiro/Apache Shiro Authentication.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/spring/Apache Shiro/Apache Shiro Authentication.md b/spring/Apache Shiro/Apache Shiro Authentication.md index b306d03..e5ebdbf 100644 --- a/spring/Apache Shiro/Apache Shiro Authentication.md +++ b/spring/Apache Shiro/Apache Shiro Authentication.md @@ -1,3 +1,19 @@ +- [Apache Shiro Authentication](#apache-shiro-authentication) + - [Apache Shiro Authentication简介](#apache-shiro-authentication简介) + - [Apache Authentication概念](#apache-authentication概念) + - [subject](#subject) + - [principals](#principals) + - [credentials](#credentials) + - [realms](#realms) + - [Shiro Authentication过程](#shiro-authentication过程) + - [Shiro框架的Authentication过程](#shiro框架的authentication过程) + - [收集用户的principals和credentials](#收集用户的principals和credentials) + - [将收集的principals和credentials提交给认证系统](#将收集的principals和credentials提交给认证系统) + - [身份认证后对访问进行allow/retry authentication/block](#身份认证后对访问进行allowretry-authenticationblock) + - [rememberMe支持](#rememberme支持) + - [remembered和authenticated的区别](#remembered和authenticated的区别) + - [logging out](#logging-out) + # Apache Shiro Authentication ## Apache Shiro Authentication简介 Authentication是一个对用户进行身份认证的过程,在认证过程中用户需要向应用提供用于证明用户的凭据。