CSPspEmu.Core.Tests.EncryptedPrxTest.LoadTest C# (CSharp) Method

LoadTest() private method

private LoadTest ( ) : void
return void
        public void LoadTest()
        {
            var EncryptedPrx = new EncryptedPrx();
            var DecryptedData = EncryptedPrx.Decrypt(File.ReadAllBytes("../../../TestInput/EBOOT.BIN"));
            File.WriteAllBytes("../../../TestInput/test.bin", DecryptedData);
            //File.ReadAllBytes("../../../TestInput/BOOT.BIN");
        }
EncryptedPrxTest