Remove the distinction between password and login key in the authentication

service. This will be done in the login service instead, it's out of
scope for an authenticator
This commit is contained in:
Melanie
2009-09-03 21:03:04 +01:00
parent 6cf610bc44
commit 328fd104e1
3 changed files with 81 additions and 18 deletions

View File

@@ -70,11 +70,8 @@ namespace OpenSim.Services.Interfaces
// the public key of the peer, which the connector must have
// obtained using a remote GetPublicKey call.
//
string AuthenticatePassword(UUID principalID, string password);
byte[] AuthenticatePasswordEncrypted(byte[] cyphertext, byte[] key);
string AuthenticateWebkey(UUID principalID, string webkey);
byte[] AuthenticateWebkeyEncrypted(byte[] cyphertext, byte[] key);
string Authenticate(UUID principalID, string password);
byte[] AuthenticateEncrypted(byte[] cyphertext, byte[] key);
//////////////////////////////////////////////////////
// Verification