mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
28 lines
541 B
C++
28 lines
541 B
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/types.h>
|
|
#include <crypto/sha.h>
|
|
#include <fnd/ISerialiseableBinary.h>
|
|
|
|
namespace nx
|
|
{
|
|
namespace hierarchicalsha256
|
|
{
|
|
static const size_t kDefaultLayerNum = 2;
|
|
static const size_t kMaxLayerNum = 2;
|
|
}
|
|
|
|
#pragma pack(push,1)
|
|
struct sHierarchicalSha256Header
|
|
{
|
|
crypto::sha::sSha256Hash master_hash;
|
|
le_uint32_t hash_block_size;
|
|
le_uint32_t layer_num;
|
|
struct sLayer
|
|
{
|
|
le_uint64_t offset;
|
|
le_uint64_t size;
|
|
} layer[hierarchicalsha256::kMaxLayerNum];
|
|
};
|
|
#pragma pack(pop)
|
|
}
|