mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-22 18:26:39 +00:00
derp
This commit is contained in:
parent
b64bcf5451
commit
e1e38bcfc2
2 changed files with 13 additions and 13 deletions
|
@ -26,26 +26,26 @@
|
||||||
#define CERT_MIN_SIZE 0x140 /* Equivalent to sizeof(CertSigHmac160PubKeyEcc480) */
|
#define CERT_MIN_SIZE 0x140 /* Equivalent to sizeof(CertSigHmac160PubKeyEcc480) */
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CertType_None = 0,
|
CertType_None = 0,
|
||||||
CertType_SigRsa4096_PubKeyRsa4096 = 1,
|
CertType_SigRsa4096_PubKeyRsa4096 = 1,
|
||||||
CertType_SigRsa4096_PubKeyRsa2048 = 2,
|
CertType_SigRsa4096_PubKeyRsa2048 = 2,
|
||||||
CertType_SigRsa4096_PubKeyEcc480 = 3,
|
CertType_SigRsa4096_PubKeyEcc480 = 3,
|
||||||
CertType_SigRsa2048_PubKeyRsa4096 = 4,
|
CertType_SigRsa2048_PubKeyRsa4096 = 4,
|
||||||
CertType_SigRsa2048_PubKeyRsa2048 = 5,
|
CertType_SigRsa2048_PubKeyRsa2048 = 5,
|
||||||
CertType_SigRsa2048_PubKeyEcc480 = 6,
|
CertType_SigRsa2048_PubKeyEcc480 = 6,
|
||||||
CertType_SigEcc480_PubKeyRsa4096 = 7,
|
CertType_SigEcc480_PubKeyRsa4096 = 7,
|
||||||
CertType_SigEcc480_PubKeyRsa2048 = 8,
|
CertType_SigEcc480_PubKeyRsa2048 = 8,
|
||||||
CertType_SigEcc480_PubKeyEcc480 = 9,
|
CertType_SigEcc480_PubKeyEcc480 = 9,
|
||||||
CertType_SigHmac160_PubKeyRsa4096 = 10,
|
CertType_SigHmac160_PubKeyRsa4096 = 10,
|
||||||
CertType_SigHmac160_PubKeyRsa2048 = 11,
|
CertType_SigHmac160_PubKeyRsa2048 = 11,
|
||||||
CertType_SigHmac160_PubKeyEcc480 = 12
|
CertType_SigHmac160_PubKeyEcc480 = 12
|
||||||
} CertType;
|
} CertType;
|
||||||
|
|
||||||
/// Always stored using big endian byte order.
|
/// Always stored using big endian byte order.
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CertPubKeyType_Rsa4096 = 0,
|
CertPubKeyType_Rsa4096 = 0,
|
||||||
CertPubKeyType_Rsa2048 = 1,
|
CertPubKeyType_Rsa2048 = 1,
|
||||||
CertPubKeyType_Ecc480 = 2
|
CertPubKeyType_Ecc480 = 2
|
||||||
} CertPubKeyType;
|
} CertPubKeyType;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
|
@ -45,12 +45,12 @@
|
||||||
#define TITLE_ADDON_BITMASK (u64)0xFFFFFFFFFFFF0000
|
#define TITLE_ADDON_BITMASK (u64)0xFFFFFFFFFFFF0000
|
||||||
|
|
||||||
|
|
||||||
NX_INLINE u64 titleGetPatchIdFromApplicationId(u64 app_id)
|
NX_INLINE u64 titleGetPatchIdByApplicationId(u64 app_id)
|
||||||
{
|
{
|
||||||
return (app_id | TITLE_PATCH_BITMASK);
|
return (app_id | TITLE_PATCH_BITMASK);
|
||||||
}
|
}
|
||||||
|
|
||||||
NX_INLINE u64 titleGetApplicationIdFromPatchId(u64 patch_id)
|
NX_INLINE u64 titleGetApplicationIdByPatchId(u64 patch_id)
|
||||||
{
|
{
|
||||||
return (patch_id & ~TITLE_PATCH_BITMASK);
|
return (patch_id & ~TITLE_PATCH_BITMASK);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue