You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
523 B
15 lines
523 B
#pragma once
|
|
#include <obf/transform/add_op.hpp>
|
|
#include <obf/transform/rol_op.hpp>
|
|
#include <obf/transform/ror_op.hpp>
|
|
#include <obf/transform/sub_op.hpp>
|
|
#include <obf/transform/xor_op.hpp>
|
|
|
|
namespace theo::obf::transform {
|
|
inline std::map<xed_iclass_enum_t, operation_t*> operations = {
|
|
{XED_ICLASS_ADD, add_op_t::get()},
|
|
{XED_ICLASS_SUB, sub_op_t::get()},
|
|
{XED_ICLASS_ROL, rol_op_t::get()},
|
|
{XED_ICLASS_ROR, ror_op_t::get()},
|
|
{XED_ICLASS_XOR, xor_op_t::get()}};
|
|
} // namespace theo::obf::transform
|