mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
112 lines
No EOL
2.8 KiB
C++
112 lines
No EOL
2.8 KiB
C++
#include <sstream>
|
|
#include <nx/HierarchicalSha256Header.h>
|
|
|
|
nx::HierarchicalSha256Header::HierarchicalSha256Header()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
nx::HierarchicalSha256Header::HierarchicalSha256Header(const HierarchicalSha256Header & other)
|
|
{
|
|
*this = other;
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::operator=(const HierarchicalSha256Header & other)
|
|
{
|
|
if (other.getBytes().size() != 0)
|
|
{
|
|
fromBytes(other.getBytes().data(), other.getBytes().size());
|
|
}
|
|
else
|
|
{
|
|
mMasterHash = other.mMasterHash;
|
|
mHashBlockSize = other.mHashBlockSize;
|
|
mLayerInfo = other.mLayerInfo;
|
|
}
|
|
}
|
|
|
|
bool nx::HierarchicalSha256Header::operator==(const HierarchicalSha256Header & other) const
|
|
{
|
|
return (mMasterHash == other.mMasterHash) \
|
|
&& (mHashBlockSize == other.mHashBlockSize) \
|
|
&& (mLayerInfo == other.mLayerInfo);
|
|
}
|
|
|
|
bool nx::HierarchicalSha256Header::operator!=(const HierarchicalSha256Header & other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::toBytes()
|
|
{
|
|
throw fnd::Exception(kModuleName, "exportBinary() not implemented");
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::fromBytes(const byte_t* data, size_t len)
|
|
{
|
|
std::stringstream error_str;
|
|
|
|
if (len < sizeof(nx::sHierarchicalSha256Header))
|
|
{
|
|
throw fnd::Exception(kModuleName, "Header too small");
|
|
}
|
|
|
|
const nx::sHierarchicalSha256Header* hdr = (const nx::sHierarchicalSha256Header*)data;
|
|
|
|
if (hdr->layer_num.get() != nx::hierarchicalsha256::kDefaultLayerNum)
|
|
{
|
|
error_str.clear();
|
|
error_str << "Invalid layer count. ";
|
|
error_str << "(actual=" << std::dec << hdr->layer_num.get() << ", expected=" << nx::hierarchicalsha256::kDefaultLayerNum << ")";
|
|
throw fnd::Exception(kModuleName, error_str.str());
|
|
}
|
|
|
|
mMasterHash = hdr->master_hash;
|
|
mHashBlockSize = hdr->hash_block_size.get();
|
|
for (size_t i = 0; i < hdr->layer_num.get(); i++)
|
|
{
|
|
mLayerInfo.addElement({hdr->layer[i].offset.get(), hdr->layer[i].size.get()});
|
|
}
|
|
}
|
|
|
|
const fnd::Vec<byte_t>& nx::HierarchicalSha256Header::getBytes() const
|
|
{
|
|
return mRawBinary;
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::clear()
|
|
{
|
|
memset(mMasterHash.bytes, 0, sizeof(crypto::sha::sSha256Hash));
|
|
mHashBlockSize = 0;
|
|
mLayerInfo.clear();
|
|
}
|
|
|
|
const crypto::sha::sSha256Hash & nx::HierarchicalSha256Header::getMasterHash() const
|
|
{
|
|
return mMasterHash;
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::setMasterHash(const crypto::sha::sSha256Hash & master_hash)
|
|
{
|
|
mMasterHash = master_hash;
|
|
}
|
|
|
|
size_t nx::HierarchicalSha256Header::getHashBlockSize() const
|
|
{
|
|
return mHashBlockSize;
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::setHashBlockSize(size_t hash_block_size)
|
|
{
|
|
mHashBlockSize = hash_block_size;
|
|
}
|
|
|
|
const fnd::List<nx::HierarchicalSha256Header::sLayer>& nx::HierarchicalSha256Header::getLayerInfo() const
|
|
{
|
|
return mLayerInfo;
|
|
}
|
|
|
|
void nx::HierarchicalSha256Header::setLayerInfo(const fnd::List<sLayer>& layer_info)
|
|
{
|
|
mLayerInfo = layer_info;
|
|
} |