mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 08:49:03 +00:00
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
#pragma once
|
|
#include "types.h"
|
|
#include "KeyBag.h"
|
|
#include <tc/Optional.h>
|
|
|
|
#include <ntd/n3ds/es/RsaSigner.h>
|
|
#include <ntd/n3ds/es/Certificate.h>
|
|
#include <ntd/n3ds/es/TitleMetaData.h>
|
|
|
|
namespace ctrtool {
|
|
|
|
class TmdProcess
|
|
{
|
|
public:
|
|
TmdProcess();
|
|
|
|
void setInputStream(const std::shared_ptr<tc::io::IStream>& input_stream);
|
|
void setKeyBag(const ctrtool::KeyBag& key_bag);
|
|
void setCliOutputMode(bool show_header_info);
|
|
void setVerboseMode(bool verbose);
|
|
void setVerifyMode(bool verify);
|
|
|
|
void process();
|
|
private:
|
|
std::string mModuleLabel;
|
|
|
|
// input args
|
|
std::shared_ptr<tc::io::IStream> mInputStream;
|
|
ctrtool::KeyBag mKeyBag;
|
|
bool mShowInfo;
|
|
bool mVerbose;
|
|
bool mVerify;
|
|
|
|
// process variables
|
|
std::map<std::string, std::shared_ptr<ntd::n3ds::es::ISigner>> mIssuerSigner;
|
|
std::map<std::string, std::shared_ptr<ntd::n3ds::es::ISigner>> mCertImportedIssuerSigner;
|
|
|
|
std::vector<ntd::n3ds::es::Certificate> mCertChain;
|
|
std::vector<ValidState> mCertSigValid;
|
|
|
|
ntd::n3ds::es::TitleMetaData mTitleMetaData;
|
|
ValidState mTitleMetaDataSigValid;
|
|
|
|
// helper methods
|
|
void importIssuerProfiles();
|
|
void importData();
|
|
void verifyData();
|
|
void printData();
|
|
|
|
bool isTwlTitle(uint64_t title_id);
|
|
|
|
// string utils
|
|
std::string getValidString(byte_t validstate);
|
|
std::string getTruncatedBytesString(const byte_t* data, size_t len, bool do_not_truncate = false);
|
|
std::string getSigTypeString(brd::es::ESSigType sig_type);
|
|
std::string getCertificatePublicKeyTypeString(brd::es::ESCertPubKeyType public_key_type);
|
|
std::string getTitleVersionString(uint16_t version);
|
|
};
|
|
|
|
} |