From 11700ba4a4e35cf7512f7f6e8b9b8e54e812f574 Mon Sep 17 00:00:00 2001 From: Melanie Date: Fri, 4 Sep 2009 07:03:43 +0100 Subject: Implement plain password authentication partway. Tested, but no user functionality yet. --- .../AuthenticationService/AuthenticationServiceBase.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs') diff --git a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs index 200268b..dab0598 100644 --- a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs +++ b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs @@ -95,6 +95,16 @@ namespace OpenSim.Services.AuthenticationService return new byte[0]; } + public bool Verify(UUID principalID, string token, int lifetime) + { + return false; + } + + public bool VerifyEncrypted(byte[] cyphertext, byte[] key) + { + return false; + } + public virtual bool Release(UUID principalID, string token) { return false; @@ -104,5 +114,10 @@ namespace OpenSim.Services.AuthenticationService { return false; } + + protected string GetToken(UUID principalID, int lifetime) + { + return "OK"; + } } } -- cgit v1.1