aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix vs2010 buildUbitUmarov2012-08-161-1/+0
|
* Add a real_id field to the login response if impersonation is used. The wrapperMelanie2012-08-151-0/+7
| | | | script needs this for proper logging.
* Merge branch 'master' into careminster-presence-refactorMelanie2011-03-271-4/+35
|\
| * Altering log feedbackSignpostMarv Martin2011-03-261-11/+12
| |
| * InfoFormat > DebugFormatSignpostMarv Martin2011-03-261-1/+1
| | | | | | | | Signed-off-by: SignpostMarv Martin <me@signpostmarv.name>
| * WebkeyAuthenticationService is now no longer a stub!SignpostMarv Martin2011-03-261-5/+35
| | | | | | | | Signed-off-by: SignpostMarv Martin <me@signpostmarv.name>
* | Add the ability for gods to impersonate users. For this, bit 6 needs to beMelanie2010-11-251-0/+5
|/ | | | | | set in the target's UserFlags and the impersonator must have UserLevel 200 or above. The user can then log in using the target's name and their own password.
* 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/+1
| | | | functionality yet.
* 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