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.
46 lines
1.0 KiB
46 lines
1.0 KiB
#pragma once
|
|
#include <theo/engine/engine.hpp>
|
|
#include <theo/obf_pass/obf_pass.hpp>
|
|
#include <theo/symbol.hpp>
|
|
|
|
namespace theo
|
|
{
|
|
/// <summary>
|
|
/// obfuscation pass at the IFF level...
|
|
/// </summary>
|
|
class obf_pass_iff_t : public obf_pass_t
|
|
{
|
|
void obfuscate( const theo::iff_t & ) override;
|
|
|
|
public:
|
|
obf_pass_iff_t() : obf_pass_t( lvl_t::l_iff )
|
|
{
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// obfuscation pass at the IFF section level...
|
|
/// </summary>
|
|
class obf_pass_section_t : public obf_pass_t
|
|
{
|
|
void obfuscate( const theo::iff_t & ) override;
|
|
|
|
public:
|
|
obf_pass_section_t() : obf_pass_t( lvl_t::l_section )
|
|
{
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// obfuscation pass at the IFF symbol level..
|
|
/// </summary>
|
|
class obf_pass_symbol_t : public obf_pass_t
|
|
{
|
|
void obfuscate( const theo::iff_t & ) override;
|
|
|
|
public:
|
|
obf_pass_symbol_t() : obf_pass_t( lvl_t::l_symbol )
|
|
{
|
|
}
|
|
};
|
|
} // namespace theo
|