summaryrefslogtreecommitdiffstats
path: root/src/core/crypto
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-04-17 04:39:58 +0200
committerLioncash <mathew1800@gmail.com>2020-04-17 04:45:44 +0200
commit8f9c599c9f7dff8c3c19375e443d7c6427ea11d3 (patch)
tree6dd941ea61b33418fc63488428adfdaada02f02a /src/core/crypto
parentdecode/memory: Resolve unused variable warning (diff)
downloadyuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar
yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.gz
yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.bz2
yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.lz
yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.xz
yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.tar.zst
yuzu-8f9c599c9f7dff8c3c19375e443d7c6427ea11d3.zip
Diffstat (limited to 'src/core/crypto')
-rw-r--r--src/core/crypto/key_manager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp
index 87e6a1fd3..8997c7082 100644
--- a/src/core/crypto/key_manager.cpp
+++ b/src/core/crypto/key_manager.cpp
@@ -1202,7 +1202,8 @@ const boost::container::flat_map<std::string, KeyIndex<S128KeyType>> KeyManager:
{S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyAreaKey),
static_cast<u64>(KeyAreaKeyType::System)}},
{"titlekek_source", {S128KeyType::Source, static_cast<u64>(SourceKeyType::Titlekek), 0}},
- {"keyblob_mac_key_source", {S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC)}},
+ {"keyblob_mac_key_source",
+ {S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC), 0}},
{"tsec_key", {S128KeyType::TSEC, 0, 0}},
{"secure_boot_key", {S128KeyType::SecureBoot, 0, 0}},
{"sd_seed", {S128KeyType::SDSeed, 0, 0}},