namespace SabreTools.Data.Models.WIA { /// /// A single hash exception entry within a WIA / RVZ Wii-partition group. /// Used to restore the correct SHA-1 hash values that were stripped when /// the Wii block hash data was removed during compression. /// Size: 0x16 bytes (2-byte offset + 20-byte SHA-1). /// public sealed class HashExceptionEntry { /// /// Byte offset within the reconstructed 0x400-byte hash block where /// this SHA-1 value must be written /// public ushort Offset { get; set; } /// /// SHA-1 hash value (20 bytes) /// /// 20 bytes public byte[] Hash { get; set; } = new byte[20]; } }