暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IAPGeneratedCredentials.cs.template 544B

123456789101112131415161718
  1. // WARNING: Do not modify! Generated file.
  2. namespace UnityEngine.Purchasing.Security {
  3. public class {NAME}Tangle
  4. {
  5. private static byte[] data = System.Convert.FromBase64String("{DATA}");
  6. private static int[] order = new int[] { {ORDER} };
  7. private static int key = {KEY};
  8. public static readonly bool IsPopulated = {POPULATED};
  9. public static byte[] Data() {
  10. if (IsPopulated == false)
  11. return null;
  12. return Obfuscator.DeObfuscate(data, order, key);
  13. }
  14. }
  15. }