mirror of
https://github.com/blacktop/ipsw.git
synced 2026-06-07 12:27:36 +00:00
57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
//------------------------------------------------
|
|
//--- 010 Editor v10.0.1 Binary Template
|
|
//
|
|
// File: AEA.bt
|
|
// Authors: blacktop
|
|
// Version: 1.0
|
|
// Purpose:
|
|
// Category: Operating System
|
|
// File Mask: *.aea
|
|
// ID Bytes: 41 45 41 31 01 00 00 00
|
|
// History:
|
|
//------------------------------------------------
|
|
|
|
typedef enum<uint>
|
|
{
|
|
Signed = 0,
|
|
SymmetricEncryption = 1,
|
|
SymmetricEncryptionSigned = 2,
|
|
AsymmetricEncryption = 3,
|
|
AsymmetricEncryptionSigned = 4,
|
|
PasswordEncryption = 5,
|
|
} profileType<format = hex>;
|
|
|
|
typedef struct
|
|
{
|
|
char magic[4]<bgcolor = cLtBlue>; // "AEA1"
|
|
profileType profileID : 24;
|
|
uint scryptStrength : 8;
|
|
uint authDataLength; // Length of metadata
|
|
} AEAHeader;
|
|
|
|
typedef struct
|
|
{
|
|
char rootHMAC[32]<bgcolor = cLtGreen>;
|
|
char rootData[48]<bgcolor = cLtGreen>;
|
|
char clusterHMAC[32]<bgcolor = cLtGreen>;
|
|
} EncryptedRootHeader;
|
|
|
|
typedef struct
|
|
{
|
|
uint address;
|
|
uint length;
|
|
} ClusterHeader;
|
|
|
|
typedef struct {
|
|
char data[32];
|
|
} HMAC;
|
|
|
|
LittleEndian();
|
|
|
|
AEAHeader header;
|
|
char authData[header.authDataLength]<bgcolor = cLtGreen>;
|
|
char salt[32]<bgcolor = cLtPurple>;
|
|
EncryptedRootHeader encRootHeader;
|
|
char segmmentHdrData[40*256]<bgcolor = cDkAqua>;
|
|
char nextClusterMac[20h]<bgcolor = cLtRed>;
|
|
HMAC segHMACs[256]<bgcolor = cDkBlue>; |