aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Tweak the login logging a bit, especially for impersonations.onefang2019-07-191-3/+7
|
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-20/+74
|
* OpenID auth needs hashing before authenticatingBlueWall2012-03-021-1/+1
|
* Revert "Fix authentication for OpenID provider"BlueWall2012-02-291-2/+2
| | | | This reverts commit 9f597c2d423a80279c4aed042be8a991eedefa21. Fixing OpenID causes issues with other parts of the code.
* Fix authentication for OpenID providerBlueWall2012-02-291-2/+2
|
* Supply correct parameters to detailed authentication login fail messageJustin Clark-Casey (justincc)2012-02-041-1/+1
|
* Make log messages on authentication failure more explicitJustin Clark-Casey (justincc)2011-11-111-13/+26
|
* Fix bug introduced by Query Access. The response does not come in a packaged ↵Diva Canto2011-02-161-1/+1
| | | | | | _Result field, it comes as simple OSDMap with 2 fields in it. Also in this commit: comment out irrelevant debug message on AuthService.
* get TestSaveIarV0_1() working again by setting up an ↵Justin Clark-Casey (justincc)2010-06-041-1/+1
| | | | | | OpenSim.Data.Null.UserAuthenticationData plugin additional tweaks to get this working properly
* Better error handling on PasswordAuthenticationServiceDiva Canto2010-03-021-14/+18
|
* New LL login service is working! -- tested in standalone only. Things still ↵Diva Canto2010-01-011-3/+5
| | | | missing from response, namely Library and Friends. Appearance service is also missing.
* Remove the inner Md5 to let the auth service handle md5 passwordsMelanie2010-01-011-1/+1
|
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2009-09-251-3/+3
|
* Remove the encryption from the IAuthenticationService interface. ThatMelanie2009-09-061-5/+0
| | | | | is too high up for that type of stuff. It needs to be at the connector/handler level
* Implement plain password authentication partway. Tested, but no userMelanie2009-09-041-11/+17
| | | | functionality yet.
* More work on new authentication serviceMelanie2009-09-041-0/+4
|
* Flech out the Authentication service. Add the database loader. IntroduceMelanie2009-09-041-13/+12
| | | | | inheritance to deal with common tasks like crypto. Still untested.
* Remove the distinction between password and login key in the authenticationMelanie2009-09-031-0/+76
service. This will be done in the login service instead, it's out of scope for an authenticator