mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 15:45:46 +00:00
key_manager: Add support for console-specific keyfile
This commit is contained in:
parent
0b4eb661a9
commit
01843d244e
2 changed files with 13 additions and 3 deletions
|
@ -26,6 +26,12 @@ using SHA256Hash = std::array<u8, 0x20>;
|
|||
static_assert(sizeof(Key128) == 16, "Key128 must be 128 bytes big.");
|
||||
static_assert(sizeof(Key256) == 32, "Key128 must be 128 bytes big.");
|
||||
|
||||
enum class KeyCategory : u8 {
|
||||
Standard,
|
||||
Title,
|
||||
Console,
|
||||
};
|
||||
|
||||
enum class S256KeyType : u64 {
|
||||
Header, //
|
||||
SDKeySource, // f1=SDKeyType
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue