├── .gitattributes ├── .gitignore ├── .nojekyll ├── IAM 平台 ├── README.md └── 扫码登陆.md ├── INTRODUCTION.md ├── LDAP └── README.md ├── LICENSE ├── OAuth ├── 99~参考资料 │ ├── 2022~Sheng~OAuth 2.0 协议.md │ └── mrcode~OAuth 2.0 实战 │ │ └── README.md ├── OIDC │ └── 99~参考资料 │ │ └── 2021~Sheng~OIDC 协议.md ├── README.md └── 深入理解现代身份认证与授权:ID Token、Access Token、OAuth 和 OIDC.md ├── RBAC └── README.md ├── README.md ├── SSO ├── CAS │ └── README.md ├── Hydra │ └── README.md ├── Keycloak │ └── README.md ├── Pac4j │ └── README.md ├── README.md └── authentik │ └── README.md ├── _sidebar.md ├── index.html ├── 多租户 ├── README.md └── 通用多租户框架.md └── 认证基础 ├── 99~参考资料 └── 2023-Password, Session, Cookie, Token, JWT, SSO, OAuth - Authentication Explained.md ├── HTTP ├── HTTP 认证.md └── Session.md ├── JWT ├── 99~参考资料 │ └── 2023~Stop using JSON Web tokens for user sessions.md └── JWT.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IAM 平台/README.md: -------------------------------------------------------------------------------- 1 | # 开放平台 2 | 3 | # Links 4 | 5 | - https://mp.weixin.qq.com/s/EToZ5wqfQCevmgRwdEWdcg 6 | -------------------------------------------------------------------------------- /IAM 平台/扫码登陆.md: -------------------------------------------------------------------------------- 1 | # 扫码登陆 2 | 3 | # Links 4 | 5 | - https://mp.weixin.qq.com/s/xVk2hGnBRRCgtL9tYWWarw 6 | -------------------------------------------------------------------------------- /INTRODUCTION.md: -------------------------------------------------------------------------------- 1 | # 本篇导读 2 | -------------------------------------------------------------------------------- /LDAP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/LDAP/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/LICENSE -------------------------------------------------------------------------------- /OAuth/99~参考资料/2022~Sheng~OAuth 2.0 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/OAuth/99~参考资料/2022~Sheng~OAuth 2.0 协议.md -------------------------------------------------------------------------------- /OAuth/99~参考资料/mrcode~OAuth 2.0 实战/README.md: -------------------------------------------------------------------------------- 1 | > [原文地址](https://zq99299.github.io/note-book/oath2/) 2 | -------------------------------------------------------------------------------- /OAuth/OIDC/99~参考资料/2021~Sheng~OIDC 协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/OAuth/OIDC/99~参考资料/2021~Sheng~OIDC 协议.md -------------------------------------------------------------------------------- /OAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/OAuth/README.md -------------------------------------------------------------------------------- /OAuth/深入理解现代身份认证与授权:ID Token、Access Token、OAuth 和 OIDC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/OAuth/深入理解现代身份认证与授权:ID Token、Access Token、OAuth 和 OIDC.md -------------------------------------------------------------------------------- /RBAC/README.md: -------------------------------------------------------------------------------- 1 | # 基于角色的权限控制 RBAC 2 | 3 | # Links 4 | 5 | - https://www.cnblogs.com/niuli1987/p/9871182.html 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/README.md -------------------------------------------------------------------------------- /SSO/CAS/README.md: -------------------------------------------------------------------------------- 1 | # CAS 2 | -------------------------------------------------------------------------------- /SSO/Hydra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/SSO/Hydra/README.md -------------------------------------------------------------------------------- /SSO/Keycloak/README.md: -------------------------------------------------------------------------------- 1 | # Keycloak 2 | -------------------------------------------------------------------------------- /SSO/Pac4j/README.md: -------------------------------------------------------------------------------- 1 | # Pac4j 2 | -------------------------------------------------------------------------------- /SSO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/SSO/README.md -------------------------------------------------------------------------------- /SSO/authentik/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/_sidebar.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/index.html -------------------------------------------------------------------------------- /多租户/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/多租户/README.md -------------------------------------------------------------------------------- /多租户/通用多租户框架.md: -------------------------------------------------------------------------------- 1 | # 通用多租户框架 2 | -------------------------------------------------------------------------------- /认证基础/99~参考资料/2023-Password, Session, Cookie, Token, JWT, SSO, OAuth - Authentication Explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/认证基础/99~参考资料/2023-Password, Session, Cookie, Token, JWT, SSO, OAuth - Authentication Explained.md -------------------------------------------------------------------------------- /认证基础/HTTP/HTTP 认证.md: -------------------------------------------------------------------------------- 1 | # HTTP 认证 2 | -------------------------------------------------------------------------------- /认证基础/HTTP/Session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/认证基础/HTTP/Session.md -------------------------------------------------------------------------------- /认证基础/JWT/99~参考资料/2023~Stop using JSON Web tokens for user sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/认证基础/JWT/99~参考资料/2023~Stop using JSON Web tokens for user sessions.md -------------------------------------------------------------------------------- /认证基础/JWT/JWT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/认证基础/JWT/JWT.md -------------------------------------------------------------------------------- /认证基础/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/Auth-Notes/HEAD/认证基础/README.md --------------------------------------------------------------------------------