summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/card_image.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-02 01:23:38 +0100
committerZach Hilman <zachhilman@gmail.com>2018-11-02 01:23:38 +0100
commit97d425c3047e67cc36e7dec95cbcbc9236c6573f (patch)
tree78dd30139846e0913cd1099bc60a9c07b77fe859 /src/core/file_sys/card_image.h
parentcontent_archive: Add optional KeyManager parameter to constructor (diff)
downloadyuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.tar
yuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.tar.gz
yuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.tar.bz2
yuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.tar.lz
yuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.tar.xz
yuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.tar.zst
yuzu-97d425c3047e67cc36e7dec95cbcbc9236c6573f.zip
Diffstat (limited to 'src/core/file_sys/card_image.h')
-rw-r--r--src/core/file_sys/card_image.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/file_sys/card_image.h b/src/core/file_sys/card_image.h
index 8f62571cf..25f5914b6 100644
--- a/src/core/file_sys/card_image.h
+++ b/src/core/file_sys/card_image.h
@@ -9,6 +9,7 @@
#include <vector>
#include "common/common_types.h"
#include "common/swap.h"
+#include "core/crypto/key_manager.h"
#include "core/file_sys/vfs.h"
namespace Loader {
@@ -107,5 +108,7 @@ private:
std::shared_ptr<NSP> secure_partition;
std::shared_ptr<NCA> program;
std::vector<std::shared_ptr<NCA>> ncas;
+
+ Core::Crypto::KeyManager keys;
};
} // namespace FileSys