mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 13:15:44 +08:00
Implement plain password authentication partway. Tested, but no user
functionality yet.
This commit is contained in:
@@ -52,7 +52,7 @@ namespace OpenSim.Services.AuthenticationService
|
||||
{
|
||||
}
|
||||
|
||||
public string Authenticate(UUID principalID, string password)
|
||||
public string Authenticate(UUID principalID, string password, int lifetime)
|
||||
{
|
||||
return String.Empty;
|
||||
}
|
||||
@@ -61,15 +61,5 @@ namespace OpenSim.Services.AuthenticationService
|
||||
{
|
||||
return new byte[0];
|
||||
}
|
||||
|
||||
public bool Verify(UUID principalID, string token)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool VerifyEncrypted(byte[] cyphertext, byte[] key)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user