retdec
decompressor_upxshit.h
Go to the documentation of this file.
1 
6 #ifndef UNPACKERTOOL_PLUGINS_UPX_DECOMPRESSORS_DECOMPRESSOR_UPXSHIT_H
7 #define UNPACKERTOOL_PLUGINS_UPX_DECOMPRESSORS_DECOMPRESSOR_UPXSHIT_H
8 
10 
11 using namespace retdec::utils;
12 
13 namespace retdec {
14 namespace unpackertool {
15 namespace upx {
16 
21 {
22 public:
23  virtual void readUnpackingStub(PeUpxStub<32>* stub, DynamicBuffer& unpackingStub) override;
24  virtual void readUnpackingStub(PeUpxStub<64>* stub, DynamicBuffer& unpackingStub) override;
25 };
26 
27 } // namespace upx
28 } // namespace unpackertool
29 } // namespace retdec
30 
31 #endif
Definition: decompressor_scrambler.h:23
Definition: decompressor_upxshit.h:21
Definition: pe_upx_stub.h:65
The class for dynamic buffered data manipulation taking the endianness of the data in account.
Definition: dynamic_buffer.h:36
Declaration of UPX scramblers decompressor visitor for unpacking packed data.
Definition: unpacking_stub.h:16
Definition: archive_wrapper.h:19