mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 05:40:03 +00:00
21 lines
567 B
C#
21 lines
567 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace BinaryObjectScanner.Models.SFFS
|
|
{
|
|
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed 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;
|
|
}
|
|
}
|