forked from snort3/snort3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecode_qp.h
46 lines (36 loc) · 1.59 KB
/
decode_qp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//--------------------------------------------------------------------------
// Copyright (C) 2015-2024 Cisco and/or its affiliates. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License Version 2 as published
// by the Free Software Foundation. You may not use, modify or distribute
// this program under any other version of the GNU General Public License.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//--------------------------------------------------------------------------
// Hui Cao <[email protected]>
#ifndef DECODE_QP_H
#define DECODE_QP_H
// Email attachment decoder
#include "mime/decode_base.h"
class QPDecode : public DataDecode
{
public:
QPDecode(int max_depth, int detect_depth);
~QPDecode() override;
// Main function to decode file data
DecodeResult decode_data(const uint8_t* start, const uint8_t* end, uint8_t* decode_buf) override;
void reset_decode_state() override;
private:
class DecodeBuffer* buffer = nullptr;
};
int sf_qpdecode(const char* src, uint32_t slen, char* dst, uint32_t dlen, uint32_t* bytes_read,
uint32_t* bytes_copied);
#endif