aboutsummaryrefslogtreecommitdiff
path: root/src/core/crypto/partition_data_manager.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-13 08:52:34 -0400
committerLioncash <mathew1800@gmail.com>2018-10-13 08:52:37 -0400
commitf56a8da46a58c0a4a1ce2570038a7060de29a18c (patch)
treeeb2ae3a6b559401ec98a137984ca5bd1fe8e70a0 /src/core/crypto/partition_data_manager.h
parentd257a3b56cac582fe296994b98f050e7b8f39056 (diff)
partition_data_manager: Dehardcode array bounds
Instead, we can make it part of the type and make named variables for them, so they only require one definition (and if they ever change for whatever reason, they only need to be changed in one spot).
Diffstat (limited to 'src/core/crypto/partition_data_manager.h')
-rw-r--r--src/core/crypto/partition_data_manager.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core/crypto/partition_data_manager.h b/src/core/crypto/partition_data_manager.h
index c5a492a92..7c9c4410a 100644
--- a/src/core/crypto/partition_data_manager.h
+++ b/src/core/crypto/partition_data_manager.h
@@ -22,6 +22,11 @@ enum class Package2Type {
class PartitionDataManager {
public:
static const u8 MAX_KEYBLOB_SOURCE_HASH;
+ static constexpr std::size_t NUM_ENCRYPTED_KEYBLOBS = 32;
+ static constexpr std::size_t ENCRYPTED_KEYBLOB_SIZE = 0xB0;
+
+ using EncryptedKeyBlob = std::array<u8, ENCRYPTED_KEYBLOB_SIZE>;
+ using EncryptedKeyBlobs = std::array<EncryptedKeyBlob, NUM_ENCRYPTED_KEYBLOBS>;
explicit PartitionDataManager(const FileSys::VirtualDir& sysdata_dir);
~PartitionDataManager();
@@ -29,8 +34,8 @@ public:
// BOOT0
bool HasBoot0() const;
FileSys::VirtualFile GetBoot0Raw() const;
- std::array<u8, 0xB0> GetEncryptedKeyblob(u8 index) const;
- std::array<std::array<u8, 0xB0>, 0x20> GetEncryptedKeyblobs() const;
+ EncryptedKeyBlob GetEncryptedKeyblob(u8 index) const;
+ EncryptedKeyBlobs GetEncryptedKeyblobs() const;
std::vector<u8> GetSecureMonitor() const;
std::array<u8, 0x10> GetPackage2KeySource() const;
std::array<u8, 0x10> GetAESKekGenerationSource() const;