mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
19 lines
656 B
C
19 lines
656 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <fnd/types.h>
|
||
|
#include <crypto/aes.h>
|
||
|
|
||
|
namespace nx
|
||
|
{
|
||
|
class AesKeygen
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
// 1 stage key generation dst = src_key.decrypt(src)
|
||
|
static void generateKey(byte_t* dst, const byte_t* src, const byte_t* src_key);
|
||
|
// 2 stage key generation dst = (src1_key.decrypt(src1)).decrypt(src2)
|
||
|
static void generateKey(byte_t* dst, const byte_t* src1, const byte_t* src2, const byte_t* src1_key);
|
||
|
// 3 stage key generation dst = ((src1_key.decrypt(src1)).decrypt(src2)).decrypt(src3)
|
||
|
static void generateKey(byte_t* dst, const byte_t* src1, const byte_t* src2, const byte_t* src3, const byte_t* src1_key);
|
||
|
};
|
||
|
}
|