// Token: 0x06003B92 RID: 15250 RVA: 0x0013873C File Offset: 0x0013693C
 public static string CatGame2(string str, bool isCompress = false)
 {
     if (!Application.isPlaying)
     {
     }
     byte[] bytes = Encoding.UTF8.GetBytes(str);
     return(CatAndMouseGame.CatHome(bytes, CatAndMouseGame.ownerData, CatAndMouseGame.ownerTop, true));
 }
Exemplo n.º 2
0
 public static string CatGame3(string str)
 {
     byte[] bytes = Encoding.UTF8.GetBytes(str);
     for (int i = 0; i < bytes.Length; i++)
     {
         bytes[i] = (byte)~bytes[i];
     }
     return(CatAndMouseGame.CatHome(bytes, CatAndMouseGame.stageData, CatAndMouseGame.stageTop, true));
 }
 // Token: 0x06003B9C RID: 15260 RVA: 0x00138A3C File Offset: 0x00136C3C
 public static string CatGame5(string str)
 {
     byte[] array  = new byte[CatAndMouseGame.BattleKey.Length];
     byte[] array2 = new byte[CatAndMouseGame.BattleIV.Length];
     byte[] bytes  = Encoding.UTF8.GetBytes(str);
     for (int i = 0; i < CatAndMouseGame.BattleKey.Length; i++)
     {
         array[i] = (CatAndMouseGame.BattleKey[i] ^ 4);
     }
     for (int j = 0; j < CatAndMouseGame.BattleIV.Length; j++)
     {
         array2[j] = (CatAndMouseGame.BattleIV[j] ^ 8);
     }
     return(CatAndMouseGame.CatHome(bytes, array, array2, false));
 }
 // Token: 0x06003BA7 RID: 15271 RVA: 0x00138F14 File Offset: 0x00137114
 public static string CatGame6(string str)
 {
     byte[] bytes = Encoding.UTF8.GetBytes(str);
     return(CatAndMouseGame.CatHome(bytes, CatAndMouseGame.sideData, CatAndMouseGame.sideTop, false));
 }