aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService (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-195-36/+121
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-2/+2
|
* The last few AssemblyInfos. Finished!Diva Canto2012-11-141-0/+33
|
* 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
|
* Add optional getauthinfo and setauthinfo authentication service calls.Justin Clark-Casey (justincc)2011-10-241-1/+46
| | | | | These are disabled by default, as before. Please only turn these on in secure grids, since they allow the same facilities as the existing SetPassword call (also disabled by default) These facilities can be helpful when integrating external systems, in addition to the existing option of adapting an IAuthenticationService or using WebLoginKey
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2011-08-221-3/+1
|
* Rename some member fields to standard m_ OpenSim code conventionJustin Clark-Casey (justincc)2011-03-261-8/+8
|
* add header fileJustin Clark-Casey (justincc)2011-03-261-1/+28
|
* Add OpenSim.Server.Base reference in prebuild.xml. Initialize svc_checks ↵Justin Clark-Casey (justincc)2011-03-261-1/+4
| | | | dictionary in WebkeyOrPasswordAuthenticationService, which was what was causing the load failure.
* Removing hard-coded plugin loading in favour of direct class instantiationSignpostMarv Martin2011-03-261-6/+5
|
* Altering log feedbackSignpostMarv Martin2011-03-262-14/+17
|
* Fixing bug that occurs when using web login- the result was not checkedSignpostMarv Martin2011-03-261-1/+1
|
* Making combined auth service re-use the existing auth services instead of ↵SignpostMarv Martin2011-03-261-21/+19
| | | | | | duplicating code Signed-off-by: SignpostMarv Martin <me@signpostmarv.name>
* InfoFormat > DebugFormatSignpostMarv Martin2011-03-261-1/+1
| | | | Signed-off-by: SignpostMarv Martin <me@signpostmarv.name>
* Adding a combined auth service, allowing users to login with either web ↵SignpostMarv Martin2011-03-261-0/+65
| | | | | | login or password 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>
* 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-042-2/+2
| | | | | | OpenSim.Data.Null.UserAuthenticationData plugin additional tweaks to get this working properly
* Putting it back to protected; Melanie doesn't like it to be public.Diva Canto2010-04-271-1/+1
|
* Changed GetToken from protected to public. This is not exposed at the interface.Diva Canto2010-04-271-1/+1
|
* Better error handling on PasswordAuthenticationServiceDiva Canto2010-03-021-14/+18
|
* SQLite connector better, but access to tables still doesn't work.Diva Canto2010-02-201-4/+9
|
* * Added SetPassword to IAuthenticationService.Diva Canto2010-01-091-3/+26
| | | | | * Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim.
* 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-253-9/+9
|
* Remove the encryption from the IAuthenticationService interface. ThatMelanie2009-09-063-25/+0
| | | | | is too high up for that type of stuff. It needs to be at the connector/handler level
* Add the new AuthStore to migrations. Update OpenSim.Server.iniMelanie2009-09-041-1/+1
|
* Fully implement unencrypted auth token operationsMelanie2009-09-041-3/+8
|
* Implement plain password authentication partway. Tested, but no userMelanie2009-09-043-22/+33
| | | | functionality yet.
* More work on new authentication serviceMelanie2009-09-042-2/+8
|
* Flech out the Authentication service. Add the database loader. IntroduceMelanie2009-09-043-26/+130
| | | | | inheritance to deal with common tasks like crypto. Still untested.
* Remove the distinction between password and login key in the authenticationMelanie2009-09-032-13/+79
| | | | | service. This will be done in the login service instead, it's out of scope for an authenticator
* Recreate the shell of the AuthenticationService to squelch Windows buildMelanie2009-08-311-0/+86
| | | | error. WIll be filled in as soon as I figure out the crypto stuff.
* Redesign the IAuthenticationService interface to use PKI. Sessioning isMelanie2009-08-291-312/+0
| | | | now in the domain of the presence module where it belongs.
* Added missing trailing slash in AuthenticationService.Diva Canto2009-08-061-0/+2
|
* Updated services to allow external applications like web interfaces toMelanie Thielker2009-06-301-8/+85
| | | | | | | authenticate against the services. This paves the way for such apps to directly talk to services.
* Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2009-06-271-1/+1
| | | | this.
* Implementation of a simple authentication service + in connector in route to ↵diva2009-06-171-9/+172
| | | | making HGInventory (client access) work in standalone again. This is the refactoring of what was/is there, but done in the new model. Not complete yet, but key authentication works. It should be enough to make HGInventory work again soon.
* Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames2009-06-041-4/+0
|
* Committing the skeleton of the authentication serviceMelanie Thielker2009-06-031-0/+74