// Token: 0x060029CD RID: 10701 RVA: 0x000A0564 File Offset: 0x0009E764
 private static byte[] smethod_3(byte[] data)
 {
     if (data.Length % 2 != 0)
     {
         throw new ArgumentException();
     }
     byte[] array = Class470.smethod_6(Class470.smethod_4(Class470.smethod_5(data)));
     Array.Reverse(array);
     return(array);
 }
 // Token: 0x060029CC RID: 10700 RVA: 0x000A0520 File Offset: 0x0009E720
 private static byte[] smethod_2(byte[] data)
 {
     if (data.Length % 2 != 0)
     {
         throw new ArgumentException();
     }
     byte[] array = new byte[data.Length];
     data.CopyTo(array, 0);
     Array.Reverse(array);
     return(Class470.smethod_5(Class470.smethod_4(Class470.smethod_6(array))));
 }