Changes between Version 21 and Version 22 of Authentication
- Timestamp:
- 04/08/16 08:22:44 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Authentication
v21 v22 30 30 ||[/browser/xpra/trunk/src/xpra/server/auth/fail_auth.py fail]||always fails authentication, no password required||useful for testing|| || 31 31 ||[/browser/xpra/trunk/src/xpra/server/auth/reject_auth.py reject]||always fails authentication, pretends to ask for a password||useful for testing|| >=0.12|| 32 ||[/browser/xpra/trunk/src/xpra/server/auth/env_auth.py env]||matches against an environment variable ({{{XPRA_PASSWORD}}} by default)|| 33 ||[/browser/xpra/trunk/src/xpra/server/auth/password_auth.py password]||matches against a password given as a module option, ie: {{{auth=password:value=mysecret}}}|| 32 ||[/browser/xpra/trunk/src/xpra/server/auth/env_auth.py env]||matches against an environment variable ({{{XPRA_PASSWORD}}} by default)||alternative to file module|| >=0.17|| 33 ||[/browser/xpra/trunk/src/xpra/server/auth/password_auth.py password]||matches against a password given as a module option, ie: {{{auth=password:value=mysecret}}}||alternative to file module|| >=0.17|| 34 34 ||[/browser/xpra/trunk/src/xpra/server/auth/multifile_auth.py multifile]||matches usernames and passwords against an authentication file||proxy: see [/wiki/Authentication#PasswordFile below]|| >=0.17|| 35 35 ||[/browser/xpra/trunk/src/xpra/server/auth/file_auth.py file]||compares the password against the contents of a password file, see [/wiki/Authentication#PasswordFile below]||simple password authentication|| ||