1 /* This file is part of the dynarmic project.
2  * Copyright (c) 2018 MerryMage
3  * SPDX-License-Identifier: 0BSD
4  */
5 
6 #pragma once
7 
8 #include "common/common_types.h"
9 
10 namespace Dynarmic::Common::Crypto::SM4 {
11 
12 u8 AccessSubstitutionBox(u8 index);
13 
14 } // namespace Dynarmic::Common::Crypto::SM4
15