diff options
Diffstat (limited to 'OpenSim/Services/Interfaces/IAuthenticationService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/IAuthenticationService.cs | 14 |
1 files changed, 14 insertions, 0 deletions
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 @@ | |||
1 | using System; | ||
2 | using OpenMetaverse; | ||
3 | |||
4 | namespace OpenSim.Services.Interfaces | ||
5 | { | ||
6 | public interface IAuthenticationService | ||
7 | { | ||
8 | string GetNewKey(UUID userID, UUID authToken); | ||
9 | |||
10 | bool VerifyKey(UUID userID, string key); | ||
11 | |||
12 | bool VerifySession(UUID iserID, UUID sessionID); | ||
13 | } | ||
14 | } | ||