#pragma once #include #include #include #include #include #include #include #include namespace nstool { struct KeyBag { using aes128_key_t = nn::hac::detail::aes128_key_t; using aes128_xtskey_t = nn::hac::detail::aes128_xtskey_t; using rsa_key_t = tc::crypto::RsaKey; //using ecc_key_t = tc::crypto::EccKey; using rights_id_t = nn::hac::detail::rights_id_t; using key_generation_t = byte_t; using broadon_issuer_t = std::string; static const size_t kNcaKeakNum = nn::hac::nca::kKeyAreaEncryptionKeyNum; // acid std::map acid_sign_key; // pkg1 and pkg2 std::map pkg1_key; std::map pkg2_key; tc::Optional pkg2_sign_key; // nca tc::Optional nca_header_key; std::map nca_header_sign0_key; std::array, kNcaKeakNum> nca_key_area_encryption_key; std::array, kNcaKeakNum> nca_key_area_encryption_key_hw; // external content keys (nca<->ticket) std::map external_content_keys; tc::Optional fallback_enc_content_key; // encrypted content key to be used when external_content_keys does not have the required content key (usually taken raw from ticket) tc::Optional fallback_content_key; // content key to be used when external_content_keys does not have the required content key (usually already decrypted from ticket) // nrr std::map nrr_certificate_sign_key; // xci tc::Optional xci_header_sign_key; std::map xci_header_key; // ticket std::map etik_common_key; // BroadOn signer profiles (for es cert and es tik) // BroadOn Keys struct BroadOnSignerProfile { tc::ByteData certificate; nn::pki::sign::SignatureAlgo key_type; rsa_key_t rsa_key; // ecc_key_t ecc_key; }; std::map broadon_signer; }; class KeyBagInitializer : public KeyBag { public: KeyBagInitializer(bool isDev, const tc::Optional& keyfile_path, const tc::Optional& tik_path, const tc::Optional& cert_path); private: KeyBagInitializer(); void importBaseKeyFile(const tc::io::Path& keyfile_path, bool isDev); void importTitleKeyFile(const tc::io::Path& keyfile_path); void importCertificateChain(const tc::io::Path& cert_path); void importTicket(const tc::io::Path& tik_path); }; }