diff options
Diffstat (limited to 'OpenSim/Framework/Communications/IAuthentication.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IAuthentication.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IAuthentication.cs b/OpenSim/Framework/Communications/IAuthentication.cs new file mode 100644 index 0000000..5d6d5f2 --- /dev/null +++ b/OpenSim/Framework/Communications/IAuthentication.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | |||
3 | using OpenMetaverse; | ||
4 | |||
5 | |||
6 | namespace OpenSim.Framework.Communications | ||
7 | { | ||
8 | public interface IAuthentication | ||
9 | { | ||
10 | string GetNewKey(string url, UUID userID, UUID authToken); | ||
11 | bool VerifyKey(UUID userID, string key); | ||
12 | } | ||
13 | } | ||