diff options
author | Teravus Ovares (Dan Olivares) | 2009-09-06 16:15:20 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-09-06 16:15:20 -0400 |
commit | 8797a8209829c0a3fe7ff9edbe46e2d636a546a8 (patch) | |
tree | e0637dd04b59f4387e160e9d26887d94904588d8 /OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs | |
parent | * Moves another Legacy avatar inbounds check to Border (diff) | |
parent | Addendum to last commit. With the last commit, some other code that should (diff) | |
download | opensim-SC_OLD-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.zip opensim-SC_OLD-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.tar.gz opensim-SC_OLD-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.tar.bz2 opensim-SC_OLD-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.tar.xz |
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs')
-rw-r--r-- | OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs index 2ed177c..8904461 100644 --- a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs +++ b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs | |||
@@ -90,31 +90,16 @@ namespace OpenSim.Services.AuthenticationService | |||
90 | throw new Exception("Could not find a storage interface in the given module"); | 90 | throw new Exception("Could not find a storage interface in the given module"); |
91 | } | 91 | } |
92 | 92 | ||
93 | public virtual byte[] GetPublicKey() | ||
94 | { | ||
95 | return new byte[0]; | ||
96 | } | ||
97 | |||
98 | public bool Verify(UUID principalID, string token, int lifetime) | 93 | public bool Verify(UUID principalID, string token, int lifetime) |
99 | { | 94 | { |
100 | return m_Database.CheckToken(principalID, token, lifetime); | 95 | return m_Database.CheckToken(principalID, token, lifetime); |
101 | } | 96 | } |
102 | 97 | ||
103 | public bool VerifyEncrypted(byte[] cyphertext, byte[] key) | ||
104 | { | ||
105 | return false; | ||
106 | } | ||
107 | |||
108 | public virtual bool Release(UUID principalID, string token) | 98 | public virtual bool Release(UUID principalID, string token) |
109 | { | 99 | { |
110 | return m_Database.CheckToken(principalID, token, 0); | 100 | return m_Database.CheckToken(principalID, token, 0); |
111 | } | 101 | } |
112 | 102 | ||
113 | public virtual bool ReleaseEncrypted(byte[] cyphertext, byte[] key) | ||
114 | { | ||
115 | return false; | ||
116 | } | ||
117 | |||
118 | protected string GetToken(UUID principalID, int lifetime) | 103 | protected string GetToken(UUID principalID, int lifetime) |
119 | { | 104 | { |
120 | UUID token = UUID.Random(); | 105 | UUID token = UUID.Random(); |