aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Utilities/FontUtils.cs
blob: efe7560c68e716406b64dae6e3181fb227a25bf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System.IO;

namespace Ryujinx.HLE.Utilities
{
    public static class FontUtils
    {
        private static readonly uint FontKey = 0x06186249;

        public static byte[] DecryptFont(Stream BFTTFStream)
        {
            uint KXor(uint In) => In ^ 0x06186249;

            using (BinaryReader Reader = new BinaryReader(BFTTFStream))
            {
                using (MemoryStream TTFStream = new MemoryStream())
                {
                    using (BinaryWriter Output = new BinaryWriter(TTFStream))
                    {
                        if (KXor(Reader.ReadUInt32()) != 0x18029a7f)
                        {
                            throw new InvalidDataException("Error: Input file is not in BFTTF format!");
                        }

                        BFTTFStream.Position += 4;

                        for (int i = 0; i < (BFTTFStream.Length - 8) / 4; i++)
                        {
                            Output.Write(KXor(Reader.ReadUInt32()));
                        }

                        return TTFStream.ToArray();
                    }
                }
            }
        }
    }
}