Skip to content

Commit

Permalink
add missing authentication modules to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Dec 10, 2024
1 parent 8df110b commit 3aa90b8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/Usage/Authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,20 @@ Some of these modules require extra [dependencies](../Build/Dependencies.md).
| [win32](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/win32.py) | win32security authentication | MS Windows system authentication |
| `sys` | system authentication | virtual module which will choose win32 or pam authentication automatically |
| [sqlite](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/sqlite.py) | sqlite database authentication | [#1488](https://github.com/Xpra-org/xpra/issues/1488#issuecomment-765477498) |
| [sql](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/sqlite.py) | sqlalchemy database authentication | [#2288](https://github.com/Xpra-org/xpra/issues/2288) |
| [mysql](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/sqlite.py) | MySQL database authentication | [#2287](https://github.com/Xpra-org/xpra/issues/2287) |
| [capability](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/capability.py) | matches values in the capabilities supplied by the client | [#3575](https://github.com/Xpra-org/xpra/issues/3575#issuecomment-1183292333) |
| [peercred](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/peercred.py) | `SO_PEERCRED` authentication | [#1524](https://github.com/Xpra-org/xpra/issues/issues/1524) |
| [tcp hosts](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/hosts.py) | [TCP Wrapper](https://en.wikipedia.org/wiki/TCP_Wrapper) | [#1730](https://github.com/Xpra-org/xpra/issues/issues/1730#issuecomment-765492022) |
| [hosts](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/hosts.py) | [TCP Wrapper](https://en.wikipedia.org/wiki/TCP_Wrapper) | [#1730](https://github.com/Xpra-org/xpra/issues/issues/1730#issuecomment-765492022) |
| [exec](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/exec.py) | Delegates to an external command | [#1690](https://github.com/Xpra-org/xpra/issues/1690) |
| [kerberos-password](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/kerberos_password.py) | Uses kerberos to authenticate a username + password | [#1691](https://github.com/Xpra-org/xpra/issues/1691) |
| [kerberos-token](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/kerberos_token.py) | Uses a kerberos ticket to authenticate a client | [#1691](https://github.com/Xpra-org/xpra/issues/1691) |
| [gss_auth](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/gss.py) | Uses a GSS ticket to authenticate a client | [#1691](https://github.com/Xpra-org/xpra/issues/1691) |
| [gss](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/gss.py) | Uses a GSS ticket to authenticate a client | [#1691](https://github.com/Xpra-org/xpra/issues/1691) |
| [keycloak](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/keycloak.py) | Uses a keycloak token to authenticate a client | [#3334](https://github.com/Xpra-org/xpra/issues/3334) |
| [ldap](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/ldap.py) | Uses ldap via [python-ldap](https://www.python-ldap.org/en/latest/) | [#1791](https://github.com/Xpra-org/xpra/issues/1791) |
| [ldap3](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/ldap3.py) | Uses ldap via [python-ldap3](https://github.com/cannatag/ldap3) | [#1791](https://github.com/Xpra-org/xpra/issues/1791) |
| [u2f](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/u2f.py) | [Universal 2nd Factor](https://en.wikipedia.org/wiki/Universal_2nd_Factor) | [#1789](https://github.com/Xpra-org/xpra/issues/1789) |
| [otp](https://github.com/Xpra-org/xpra/blob/master/xpra/server/auth/otp.py) | One Time Password | [pyotp](https://github.com/pyauth/pyotp) |
</details>

<details>
Expand Down

0 comments on commit 3aa90b8

Please sign in to comment.