Add support for processing InitialData CryptoTypes 1-2

This commit is contained in:
jakcron
2022-04-11 18:01:05 +08:00
parent 8876f0efd4
commit a1f86a6813
2 changed files with 15 additions and 5 deletions
@@ -167,7 +167,9 @@ struct CciHeader
enum CryptoType
{
CryptoType_Secure = 0, // Secure initial data key (keyX bootrom, keyY initial data seed) (used in production ROMs)
CryptoType_Secure0 = 0, // Secure initial data key (keyX bootrom, keyY initial data seed) (used in production ROMs)
CryptoType_Secure1 = 1, // Secure initial data key (keyX bootrom, keyY initial data seed) (used in production ROMs)
CryptoType_Secure2 = 2, // Secure initial data key (keyX bootrom, keyY initial data seed) (used in production ROMs)
CryptoType_FixedKey = 3, // Zeros initial data key (used in non-HSM enviroments like development)
};