summaryrefslogtreecommitdiffstats
path: root/ui/ssl_key_export.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/ssl_key_export.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/ssl_key_export.h')
-rw-r--r--ui/ssl_key_export.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/ui/ssl_key_export.h b/ui/ssl_key_export.h
new file mode 100644
index 0000000..edf42d4
--- /dev/null
+++ b/ui/ssl_key_export.h
@@ -0,0 +1,47 @@
+/** @file
+ *
+ * SSL session key utilities. Copied from ui/gkt/export_sslkeys.c
+ * by Sake Blok <sake@euronet.nl> (20110526)
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __SSL_KEY_EXPORT_H__
+#define __SSL_KEY_EXPORT_H__
+
+#include "cfile.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/** Return the number of available SSL session keys.
+ *
+ * @return The number of available SSL session keys.
+ */
+extern int ssl_session_key_count(void);
+
+/** Dump our SSL Session Keys to a string
+ *
+ * @param[out] length Length of returned string.
+ *
+ * @return A string containing all the SSL Session Keys. Must be freed with
+ * g_free().
+ */
+extern gchar* ssl_export_sessions(gsize *length);
+
+/** Add a DSB with the used TLS secrets to a capture file.
+ *
+ * @param cf The capture file
+ */
+extern void tls_export_dsb(capture_file *cf);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __SSL_KEY_EXPORT_H__ */