12345678910111213141516171819202122232425262728293031323334353637383940 |
- using UnityEngine;
- using System.Collections;
- using System.Xml;
- public class Test : MonoBehaviour {
- private XmlDocument oldXml;
- private XmlDocument newXml;
- // Use this for initialization
- void Start ()
- {
- Debuger.EnableLog = true;
- //
- string a = "fuck lily everyday";
- string en = DecryptionUtil.Encryption(a);
- Debuger.Log(en);
- string de = DecryptionUtil.Decryption(en);
- Debuger.Log(de);
- }
-
- public void Dotest()
- {
- URLRequestData data = new URLRequestData();
- data.Add("email", "232800773@qq.com");
- data.Add("pwd", "123abc");
- string url = "http://battlearray.dashgame.com/login_getcoin.php";
- URLRequest.CreateURLRequest(url, data, OnLogin);
- }
- private void OnLogin(LitJson.JsonData data)
- {
- }
- }
|