suricata
util-ja3.h
Go to the documentation of this file.
1/* Copyright (C) 2007-2017 Open Information Security Foundation
2 *
3 * You can copy, redistribute or modify this Program under the terms of
4 * the GNU General Public License version 2 as published by the Free
5 * Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * version 2 along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 */
17
18/**
19 * \file
20 *
21 * \author Mats Klepsland <mats.klepsland@gmail.com>
22 */
23
24#ifndef SURICATA_UTIL_JA3_H
25#define SURICATA_UTIL_JA3_H
26
27#define JA3_BUFFER_INITIAL_SIZE 128
28
29#include "detect.h"
30
31typedef struct JA3Buffer_ {
32 char *data;
33 uint32_t size;
34 uint32_t used;
36
40int Ja3BufferAddValue(JA3Buffer **, uint32_t);
42int Ja3IsDisabled(const char *);
43
44#ifdef HAVE_JA3
45InspectionBuffer *Ja3DetectGetHash(DetectEngineThreadCtx *det_ctx,
46 const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
47 const int list_id);
48
49InspectionBuffer *Ja3DetectGetString(DetectEngineThreadCtx *det_ctx,
50 const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
51 const int list_id);
52#endif /* HAVE_JA3 */
53#endif /* SURICATA_UTIL_JA3_H */
Flow data structure.
Definition flow.h:356
uint32_t used
Definition util-ja3.h:34
uint32_t size
Definition util-ja3.h:33
char * data
Definition util-ja3.h:32
struct JA3Buffer_ JA3Buffer
int Ja3BufferAddValue(JA3Buffer **, uint32_t)
Definition util-ja3.c:314
JA3Buffer * Ja3BufferInit(void)
Allocate new buffer.
Definition util-ja3.c:39
int Ja3IsDisabled(const char *)
Definition util-ja3.c:324
char * Ja3GenerateHash(JA3Buffer *)
Definition util-ja3.c:319
void Ja3BufferFree(JA3Buffer **)
Free allocated buffer.
Definition util-ja3.c:54
int Ja3BufferAppendBuffer(JA3Buffer **, JA3Buffer **)
Definition util-ja3.c:309