IAPGeneratedCredentials.cs.template 501 B

12345678910111213141516
  1. #if UNITY_ANDROID || UNITY_IPHONE || UNITY_STANDALONE_OSX || UNITY_TVOS
  2. // WARNING: Do not modify! Generated file.
  3. namespace UnityEngine.Purchasing.Security {
  4. public class {NAME}Tangle
  5. {
  6. private static byte[] data = System.Convert.FromBase64String("{DATA}");
  7. private static int[] order = new int[] { {ORDER} };
  8. private static int key = {KEY};
  9. public static byte[] Data() {
  10. return Obfuscator.DeObfuscate(data, order, key);
  11. }
  12. }
  13. }
  14. #endif