Files
BinaryObjectScanner/BurnOutSharp.Models/SFFS/FileEntry.cs
2022-12-14 23:16:37 -08:00

21 lines
553 B
C#

using System.Runtime.InteropServices;
namespace BurnOutSharp.Models.SFFS
{
/// <see cref="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
[StructLayout(LayoutKind.Sequential)]
public class FileEntry
{
/// <summary>
/// MD5 hash of filename (not encrypted,)
/// </summary>
/// <remarks>0x10 bytes</remarks>
public byte[] FilenameMD5Hash;
/// <summary>
/// Index of fileheader (encrypted with filename)
/// </summary>
public ulong FileHeaderIndex;
}
}