mirror of
https://github.com/NinjaCheetah/libWiiPy.git
synced 2025-04-25 21:01:01 -04:00
32 lines
961 B
Python
32 lines
961 B
Python
# "title/banner.py" from libWiiPy by NinjaCheetah & Contributors
|
|
# https://github.com/NinjaCheetah/libWiiPy
|
|
#
|
|
# See https://wiibrew.org/wiki/Opening.bnr for details about the Wii's banner format
|
|
|
|
from dataclasses import dataclass as _dataclass
|
|
|
|
|
|
@_dataclass
|
|
class IMD5Header:
|
|
"""
|
|
An IMD5Header object that contains the properties of an IMD5 header. These headers precede the data of banner.bin
|
|
and icon.bin inside the banner (00000000.app) of a channel, and are used to verify the data of those files.
|
|
|
|
An IMD5 header is always 32 bytes long.
|
|
|
|
Attributes
|
|
----------
|
|
magic : str
|
|
Magic number for the header, should be "IMD5".
|
|
file_size : int
|
|
The size of the file this header precedes.
|
|
zeros : int
|
|
8 bytes of zero padding.
|
|
md5_hash : bytes
|
|
The MD5 hash of the file this header precedes.
|
|
"""
|
|
magic: str # Should always be "IMD5"
|
|
file_size: int
|
|
zeros: int
|
|
md5_hash: bytes
|