mirror of
https://github.com/jakcron/nstool
synced 2024-11-22 13:39:28 +00:00
Fix formatting of NCA Key Area.
This commit is contained in:
parent
bcd4df2eb4
commit
7abcedb7e5
1 changed files with 8 additions and 12 deletions
|
@ -488,22 +488,18 @@ void nstool::NcaProcess::displayHeader()
|
||||||
if (mContentKey.kak_list.size() > 0 && mCliOutputMode.show_keydata)
|
if (mContentKey.kak_list.size() > 0 && mCliOutputMode.show_keydata)
|
||||||
{
|
{
|
||||||
fmt::print(" Key Area:\n");
|
fmt::print(" Key Area:\n");
|
||||||
fmt::print(" <--------------------------------------------------------------------------------------------------------->\n");
|
fmt::print(" <--------------------------------------------------------------------------->\n");
|
||||||
fmt::print(" | IDX | ENCRYPTED KEY | DECRYPTED KEY |\n");
|
fmt::print(" | IDX | ENCRYPTED KEY | DECRYPTED KEY |\n");
|
||||||
fmt::print(" |-----|-------------------------------------------------|-------------------------------------------------|\n");
|
fmt::print(" |-----|----------------------------------|----------------------------------|\n");
|
||||||
for (size_t i = 0; i < mContentKey.kak_list.size(); i++)
|
for (size_t i = 0; i < mContentKey.kak_list.size(); i++)
|
||||||
{
|
{
|
||||||
fmt::print(" | {:3d} | {:s} | ", mContentKey.kak_list[i].index, tc::cli::FormatUtil::formatBytesAsString(mContentKey.kak_list[i].enc.data(), mContentKey.kak_list[i].enc.size(), true, ""));
|
std::string enc_key = tc::cli::FormatUtil::formatBytesAsString(mContentKey.kak_list[i].enc.data(), mContentKey.kak_list[i].enc.size(), true, "");
|
||||||
|
std::string dec_key = mContentKey.kak_list[i].decrypted ? tc::cli::FormatUtil::formatBytesAsString(mContentKey.kak_list[i].dec.data(), mContentKey.kak_list[i].dec.size(), true, "") : "<unable to decrypt>";
|
||||||
|
|
||||||
|
fmt::print(" | {:3d} | {:32s} | {:32s} |\n", mContentKey.kak_list[i].index, enc_key, dec_key);
|
||||||
|
|
||||||
if (mContentKey.kak_list[i].decrypted)
|
|
||||||
fmt::print("{:s}", tc::cli::FormatUtil::formatBytesAsString(mContentKey.kak_list[i].dec.data(), mContentKey.kak_list[i].dec.size(), true, ""));
|
|
||||||
else
|
|
||||||
fmt::print("<unable to decrypt> ");
|
|
||||||
|
|
||||||
fmt::print(" |\n");
|
|
||||||
}
|
}
|
||||||
fmt::print(" <--------------------------------------------------------------------------------------------------------->\n");
|
fmt::print(" <--------------------------------------------------------------------------->\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mCliOutputMode.show_layout)
|
if (mCliOutputMode.show_layout)
|
||||||
|
|
Loading…
Reference in a new issue