2018-05-20 01:18:38 +00:00
|
|
|
#pragma once
|
2018-08-07 07:17:51 +00:00
|
|
|
#include <nn/hac/hierarchicalintegrity.h>
|
2018-10-14 05:45:09 +00:00
|
|
|
#include <fnd/IByteModel.h>
|
2018-05-20 01:18:38 +00:00
|
|
|
#include <fnd/List.h>
|
2018-08-07 08:35:03 +00:00
|
|
|
#include <fnd/sha.h>
|
2018-05-20 01:18:38 +00:00
|
|
|
|
2018-08-07 07:17:51 +00:00
|
|
|
namespace nn
|
|
|
|
{
|
|
|
|
namespace hac
|
2018-05-20 01:18:38 +00:00
|
|
|
{
|
|
|
|
class HierarchicalIntegrityHeader :
|
2018-10-14 05:45:09 +00:00
|
|
|
public fnd::IByteModel
|
2018-05-20 01:18:38 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct sLayer
|
|
|
|
{
|
|
|
|
size_t offset;
|
|
|
|
size_t size;
|
2018-05-20 13:57:38 +00:00
|
|
|
size_t block_size;
|
2018-05-20 01:18:38 +00:00
|
|
|
|
|
|
|
void operator=(const sLayer& other)
|
|
|
|
{
|
|
|
|
offset = other.offset;
|
|
|
|
size = other.size;
|
2018-05-20 13:57:38 +00:00
|
|
|
block_size = other.block_size;
|
2018-05-20 01:18:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 13:57:38 +00:00
|
|
|
bool operator==(const sLayer& other) const
|
2018-05-20 01:18:38 +00:00
|
|
|
{
|
2018-05-20 13:57:38 +00:00
|
|
|
return (offset == other.offset && size == other.size && block_size == other.block_size);
|
2018-05-20 01:18:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 13:57:38 +00:00
|
|
|
bool operator!=(const sLayer& other) const
|
2018-05-20 01:18:38 +00:00
|
|
|
{
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
HierarchicalIntegrityHeader();
|
|
|
|
HierarchicalIntegrityHeader(const HierarchicalIntegrityHeader& other);
|
|
|
|
|
2018-06-24 08:18:54 +00:00
|
|
|
void operator=(const HierarchicalIntegrityHeader& other);
|
2018-05-20 01:18:38 +00:00
|
|
|
bool operator==(const HierarchicalIntegrityHeader& other) const;
|
|
|
|
bool operator!=(const HierarchicalIntegrityHeader& other) const;
|
|
|
|
|
2018-10-18 12:48:16 +00:00
|
|
|
// IByteModel
|
2018-06-24 08:18:54 +00:00
|
|
|
void toBytes();
|
|
|
|
void fromBytes(const byte_t* bytes, size_t len);
|
|
|
|
const fnd::Vec<byte_t>& getBytes() const;
|
2018-05-20 01:18:38 +00:00
|
|
|
|
|
|
|
// variables
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
const fnd::List<sLayer>& getLayerInfo() const;
|
|
|
|
void setLayerInfo(const fnd::List<sLayer>& layer_info);
|
|
|
|
|
2018-08-07 08:35:03 +00:00
|
|
|
const fnd::List<fnd::sha::sSha256Hash>& getMasterHashList() const;
|
|
|
|
void setMasterHashList(const fnd::List<fnd::sha::sSha256Hash>& master_hash_list);
|
2018-05-20 01:18:38 +00:00
|
|
|
private:
|
|
|
|
const std::string kModuleName = "HIERARCHICAL_INTEGRITY_HEADER";
|
|
|
|
|
|
|
|
// binary
|
2018-06-24 08:18:54 +00:00
|
|
|
fnd::Vec<byte_t> mRawBinary;
|
2018-05-20 01:18:38 +00:00
|
|
|
|
|
|
|
// data
|
|
|
|
fnd::List<sLayer> mLayerInfo;
|
2018-08-07 08:35:03 +00:00
|
|
|
fnd::List<fnd::sha::sSha256Hash> mMasterHashList;
|
2018-05-20 01:18:38 +00:00
|
|
|
};
|
2018-08-07 07:17:51 +00:00
|
|
|
}
|
2018-05-20 01:18:38 +00:00
|
|
|
}
|