Class TangleObfuscator
This class will generate the tangled signature used for client-side receipt validation obfuscation.
Namespace: UnityEditor.Purchasing
Syntax
public static class TangleObfuscator
Methods
Obfuscate(Byte[], Int32[], out Int32)
Generates the obfucscation tangle data.
Declaration
public static byte[] Obfuscate(byte[] data, int[] order, out int rkey)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | data | The Apple or GooglePlay public key data to be obfuscated. |
Int32[] | order | The array, passed by reference, of order of the data slices used to obfuscate the data with. |
Int32 | rkey | Outputs the encryption key to deobfuscate the tangled data at runtime |
Returns
Type | Description |
---|---|
Byte[] | The obfucated public key |