nstool/lib/libhac/include/nn/hac/hierarchicalsha256.h

29 lines
496 B
C
Raw Normal View History

2018-05-11 09:44:41 +00:00
#pragma once
#include <fnd/types.h>
#include <fnd/sha.h>
2018-05-11 09:44:41 +00:00
2018-08-07 07:17:51 +00:00
namespace nn
{
namespace hac
2018-05-11 09:44:41 +00:00
{
namespace hierarchicalsha256
{
static const size_t kDefaultLayerNum = 2;
static const size_t kMaxLayerNum = 2;
2018-05-11 09:44:41 +00:00
}
#pragma pack(push,1)
struct sHierarchicalSha256Header
{
fnd::sha::sSha256Hash master_hash;
2018-05-11 09:44:41 +00:00
le_uint32_t hash_block_size;
le_uint32_t layer_num;
struct sLayer
2018-05-11 09:44:41 +00:00
{
le_uint64_t offset;
le_uint64_t size;
} layer[hierarchicalsha256::kMaxLayerNum];
2018-05-11 09:44:41 +00:00
};
#pragma pack(pop)
}
2018-08-07 07:17:51 +00:00
}