public void CheckD (string testName, byte[] key, byte[] data, byte[] result) { algo = new HMACMD5 (); algo.Key = key; // LAMESPEC or FIXME: TransformFinalBlock doesn't return HashValue ! algo.TransformFinalBlock (data, 0, data.Length); Assert.AreEqual (result, algo.Hash, testName + "d"); }
public void CheckE (string testName, byte[] key, byte[] data, byte[] result) { algo = new HMACMD5 (); algo.Key = key; byte[] copy = new byte [data.Length]; // LAMESPEC or FIXME: TransformFinalBlock doesn't return HashValue ! for (int i=0; i < data.Length - 1; i++) algo.TransformBlock (data, i, 1, copy, i); algo.TransformFinalBlock (data, data.Length - 1, 1); Assert.AreEqual (result, algo.Hash, testName + "e"); }
/// <summary> /// Authenticates a socket before accepting into /// a permanent connection (it's connection attempt /// may yet be rejected.) /// </summary> /// <param name="socketObj">The object to cast into a socket to query.</param> public void Authenticate(Object socketObj) { Socket s = (Socket)socketObj; int rconConId = this.NextRconID; //Don't bother sending CreateRootUser this ID. The socket if ( rconConId == -1 ) return; //doesn't exist for long enough for us to care. But it's important that it's there. if ( rconUsers == null ) { CreateRootUser( s ); return; } StringBuilder sb = new StringBuilder(); sb.AppendFormat( "<{0}.{1}@{2}>", System.Diagnostics.Process.GetCurrentProcess().Id, DateTime.Now.ToString( "ddmmyyhhmmss" ), System.Environment.UserDomainName ); string authmsg = "authenticate " + sb.ToString(); int offset = 0; SocketError errorCode; do { try { offset += s.Send( IRCProtocol.Ascii.GetBytes( authmsg ), offset, authmsg.Length - offset, SocketFlags.None, out errorCode ); } catch ( SocketException ) { s.Close(); return; //Give up. They can reconnect. } } while ( offset < authmsg.Length ); if ( errorCode != SocketError.Success ) { s.Close(); return; } //Get Auth response. byte[] recvBuf = new byte[rconfig.SocketBufferSize]; offset = s.Receive( recvBuf, 0, rconfig.SocketBufferSize, SocketFlags.None, out errorCode ); if ( offset == 0 || errorCode != SocketError.Success ) { s.Close(); return; } string authReply = IRCProtocol.Ascii.GetString( recvBuf, 0, offset ); //Parse into name/hash and verify both for correctness. string[] unameAndHash = authReply.Split( ' ' ); if ( unameAndHash.Length != 2 ) { s.Close(); return; } //Verify username. string username = unameAndHash[0]; Nullable<RconUserFile.RconUser> rc = rconUsers.GetUser(username); if ( rc == null ) { s.Close(); return; } //Verify their hash. string theirHash = unameAndHash[1]; string pass = rc.Value.Password; HMACMD5 hmac = new HMACMD5( IRCProtocol.Ascii.GetBytes( pass ) ); hmac.Initialize(); hmac.TransformFinalBlock( IRCProtocol.Ascii.GetBytes( sb.ToString() ), 0, theirHash.Length ); string ourHash = RconUserFile.GetHashFromDigest( hmac.Hash ); if ( !ourHash.Equals( theirHash ) ) { s.Close(); return; } authmsg = "success"; offset = 0; do { try { offset += s.Send( IRCProtocol.Ascii.GetBytes( authmsg ), offset, authmsg.Length - offset, SocketFlags.None, out errorCode ); } catch ( SocketException ) { s.Close(); return; //Give up. They can reconnect. } } while ( offset < authmsg.Length ); if ( errorCode != SocketError.Success ) { s.Close(); return; } //DO IT MAD AMOUNTS OF ARRAY LOOKUPS FOR NO REASON. L2TEMP VARIABLE PLZ rconConnections[rconConId] = new SocketPipe( s, rconConId, 30000, 5000, 0 ); rconConnections[rconConId].OnReceive += new SocketPipe.ReceiveData( OnReceive ); rconConnections[rconConId].OnDisconnect += new SocketPipe.NoParams( OnDisconnect ); Thread t = new Thread( new ThreadStart( rconConnections[rconConId].ConstantPump ) ); t.Start(); //Start sending anything we can :D rconConnections[rconConId].ConstantSiphon(); //Consume current thread generated by ConstantAccept. }