Hvordan sætter jeg ind sådan at den checker efter user/pass fra en text fil ind her? er ikke god til csharp
- private d0 Login(SessInfo CurrentSess, object[] args)
- {
- string text = null;
- if (args.Length >= 3)
- {
- string str = (string)args[0];
- string str2 = (string)args[1];
- byte bot = (byte)args[2];
- byte[] bytes = Encoding.ASCII.GetBytes(str + str2);
- byte[] bytes2 = BitConverter.GetBytes(DateTime.Now.ToBinary());
- byte[] bytes3 = BitConverter.GetBytes(this.rand.Next());
- byte[] array = new byte[bytes.Length + bytes2.Length + bytes3.Length];
- Buffer.BlockCopy(bytes, 0, array, 0, bytes.Length);
- Buffer.BlockCopy(bytes2, 0, array, bytes.Length, bytes2.Length);
- Buffer.BlockCopy(bytes3, 0, array, bytes.Length + bytes2.Length, bytes3.Length);
- text = DataLib.MD5(array);
- this.Sessions.Add(new SessInfo(text, bot));
- }
- d0 d = new d0();
- if (text != null)
- {
- d.Success = true;
- d.Body = "Logged into Auth Server";
- d.Data = Encoding.ASCII.GetBytes(text);
- }
- else
- {
- d.Success = false;
- d.Body = "Authentication failed";
- }
- return d;
- }