aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IAuthenticationService.cs
diff options
context:
space:
mode:
authorMelanie2009-09-03 21:03:04 +0100
committerMelanie2009-09-03 21:03:04 +0100
commit328fd104e183d6c08148d9752ad7f61608244f5d (patch)
treed5e6d5cb705cb8b5dd50c02c09eec0126a1ce9b0 /OpenSim/Services/Interfaces/IAuthenticationService.cs
parenteliminate unnecessary storage of mesh objects which are no longer necessary a... (diff)
downloadopensim-SC_OLD-328fd104e183d6c08148d9752ad7f61608244f5d.zip
opensim-SC_OLD-328fd104e183d6c08148d9752ad7f61608244f5d.tar.gz
opensim-SC_OLD-328fd104e183d6c08148d9752ad7f61608244f5d.tar.bz2
opensim-SC_OLD-328fd104e183d6c08148d9752ad7f61608244f5d.tar.xz
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
Diffstat (limited to 'OpenSim/Services/Interfaces/IAuthenticationService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IAuthenticationService.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Services/Interfaces/IAuthenticationService.cs b/OpenSim/Services/Interfaces/IAuthenticationService.cs
index d473cf8..f042c93 100644
--- a/OpenSim/Services/Interfaces/IAuthenticationService.cs
+++ b/OpenSim/Services/Interfaces/IAuthenticationService.cs
@@ -70,11 +70,8 @@ namespace OpenSim.Services.Interfaces
70 // the public key of the peer, which the connector must have 70 // the public key of the peer, which the connector must have
71 // obtained using a remote GetPublicKey call. 71 // obtained using a remote GetPublicKey call.
72 // 72 //
73 string AuthenticatePassword(UUID principalID, string password); 73 string Authenticate(UUID principalID, string password);
74 byte[] AuthenticatePasswordEncrypted(byte[] cyphertext, byte[] key); 74 byte[] AuthenticateEncrypted(byte[] cyphertext, byte[] key);
75
76 string AuthenticateWebkey(UUID principalID, string webkey);
77 byte[] AuthenticateWebkeyEncrypted(byte[] cyphertext, byte[] key);
78 75
79 ////////////////////////////////////////////////////// 76 //////////////////////////////////////////////////////
80 // Verification 77 // Verification