nstool/lib/libnx/include/nx/hierarchicalsha256.h

27 lines
485 B
C
Raw Normal View History

2018-05-11 09:44:41 +00:00
#pragma once
#include <fnd/types.h>
#include <crypto/sha.h>
namespace nx
{
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
{
crypto::sha::sSha256Hash master_hash;
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)
}