PoGo.ApiClient.Helpers.Crypt.sub_8B2F4(System.IntPtr)

Here are the examples of the csharp api class PoGo.ApiClient.Helpers.Crypt.sub_8B2F4(System.IntPtr) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: PoGo
Source File: Crypt.cs
View license
private static unsafe void sub_9E9D8(IntPtr input, IntPtr output)
        {
            var temp = new int[0x32C/sizeof(int)];
            var temp2 = new int[0x100/sizeof(int)];

            Marshal.Copy(input, temp2, 0, 0x100/sizeof(int));

            fixed (int* t = temp, t2 = temp2)
            {
                var tPtr = (IntPtr) t;
                var t2Ptr = (IntPtr) t2;

                sub_87568(tPtr, t2Ptr);
                sub_8930C(tPtr);
                sub_8B2F4(tPtr);
                sub_8D114(tPtr);
                sub_8F0B0(tPtr);
                sub_910A8(tPtr);
                sub_92E08(tPtr);
                sub_94BDC(tPtr);
                sub_96984(tPtr);
                sub_985E0(tPtr);
                sub_9A490(tPtr);
                sub_9C42C(tPtr);
                sub_9E1C4(tPtr, t2Ptr);
            }

            Marshal.Copy(temp2, 0, output, 0x100/sizeof(int));
        }