From cb704ecde19c512bfa4fc0b317d37fec63e76713 Mon Sep 17 00:00:00 2001 From: diva Date: Mon, 25 May 2009 20:30:24 +0000 Subject: Beginning of refactoring RESTComms/LocalComms in the new style of services and connectors. This commit has the beginning of the In connector, not the Out. Nothing of this is finished yet, and it doesn't run. But it should compile ok. --- OpenSim/Services/Interfaces/IAuthenticationService.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 OpenSim/Services/Interfaces/IAuthenticationService.cs (limited to 'OpenSim/Services/Interfaces/IAuthenticationService.cs') diff --git a/OpenSim/Services/Interfaces/IAuthenticationService.cs b/OpenSim/Services/Interfaces/IAuthenticationService.cs new file mode 100644 index 0000000..25ceaa6 --- /dev/null +++ b/OpenSim/Services/Interfaces/IAuthenticationService.cs @@ -0,0 +1,14 @@ +using System; +using OpenMetaverse; + +namespace OpenSim.Services.Interfaces +{ + public interface IAuthenticationService + { + string GetNewKey(UUID userID, UUID authToken); + + bool VerifyKey(UUID userID, string key); + + bool VerifySession(UUID iserID, UUID sessionID); + } +} -- cgit v1.1