Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
ssl_key_export.h
1 /* export_sslkeys.h
2  *
3  * SSL session key utilities. Copied from ui/gkt/export_sslkeys.c
4  * by Sake Blok <sake@euronet.nl> (20110526)
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef __SSL_KEY_EXPORT_H__
14 #define __SSL_KEY_EXPORT_H__
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
19 
24 extern int ssl_session_key_count(void);
25 
31 extern gchar* ssl_export_sessions(void);
32 
33 #ifdef __cplusplus
34 }
35 #endif /* __cplusplus */
36 
37 #endif /* __SSL_KEY_EXPORT_H__ */
38 
39 /*
40  * Editor modelines
41  *
42  * Local Variables:
43  * c-basic-offset: 4
44  * tab-width: 8
45  * indent-tabs-mode: nil
46  * End:
47  *
48  * ex: set shiftwidth=4 tabstop=8 expandtab:
49  * :indentSize=4:tabSize=8:noTabs=true:
50  */