diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-06 02:34:08 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-06 02:34:10 -0400 |
commit | 04bb47f57f261e4e7a2280924d567683b9815c23 (patch) | |
tree | 9e404cce33216ac3e73f6b522f499ae5d7ded9d0 /src | |
parent | 09f884b7bd385779a127efa78b98d87020e54fae (diff) |
partition_data_manager: Eliminate magic value
We can use sizeof to make it obvious at the call site where the value is
coming from.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/crypto/partition_data_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/crypto/partition_data_manager.cpp b/src/core/crypto/partition_data_manager.cpp index b31a81560..c5c073e70 100644 --- a/src/core/crypto/partition_data_manager.cpp +++ b/src/core/crypto/partition_data_manager.cpp @@ -349,8 +349,8 @@ static bool AttemptDecrypt(const std::array<u8, 16>& key, Package2Header& header Package2Header temp = header; AESCipher<Key128> cipher(key, Mode::CTR); cipher.SetIV(header.header_ctr); - cipher.Transcode(&temp.header_ctr, sizeof(Package2Header) - 0x100, &temp.header_ctr, - Op::Decrypt); + cipher.Transcode(&temp.header_ctr, sizeof(Package2Header) - sizeof(Package2Header::signature), + &temp.header_ctr, Op::Decrypt); if (temp.magic == Common::MakeMagic('P', 'K', '2', '1')) { header = temp; return true; |