mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
17 lines
No EOL
523 B
C++
17 lines
No EOL
523 B
C++
#pragma once
|
|
#include <nn/hac/define/nca.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
class ContentArchiveUtils
|
|
{
|
|
public:
|
|
static inline size_t sectorToOffset(size_t sector_index) { return sector_index * nn::hac::nca::kSectorSize; }
|
|
static void decryptContentArchiveHeader(const byte_t* src, byte_t* dst, const fnd::aes::sAesXts128Key& key);
|
|
static byte_t getMasterKeyRevisionFromKeyGeneration(byte_t key_generation);
|
|
static void getNcaPartitionAesCtr(const nn::hac::sNcaFsHeader* hdr, byte_t* ctr);
|
|
};
|
|
}
|
|
} |