mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-13 13:22:57 +00:00
15 lines
289 B
C++
15 lines
289 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2018 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace Dynarmic::Common::Crypto::SM4 {
|
|
|
|
u8 AccessSubstitutionBox(u8 index);
|
|
|
|
} // namespace Dynarmic::Common::Crypto::SM4
|