aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IAuthentication.cs
blob: 5d6d5f2b1870350d2c2196f21198471f525003e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

using OpenMetaverse;


namespace OpenSim.Framework.Communications
{
    public interface IAuthentication
    {
        string GetNewKey(string url, UUID userID, UUID authToken);
        bool VerifyKey(UUID userID, string key);
    }
}