aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl.h
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-02-16 10:50:02 +0100
committerAnders Broman <a.broman58@gmail.com>2015-03-12 16:27:10 +0000
commit410b40d37145ac217db41ea6bc403c36ab53195d (patch)
treeb5fee07b6d7d30b3658bbb210770139c1a653f4e /epan/dissectors/packet-ssl.h
parent6c1e4d2e7a9bd4884feff393fe3cd9b18d8dfee3 (diff)
Export CLIENT_RANDOM with Export SSL Session Keys
This allows for exporting the SSL session keys for captures which were decrypted using a RSA certificate, but where the server does not support session resumption. To avoid frequent reallocations, the expected length is used as initial string size. Tested against a nginx server with ssl_session_cache off. Note that all keys loaded via ssl.keylog_file are exported, not just the displayed ones! Change-Id: Ie3a93d3692885502f46442953fa53303d16672d7 Reviewed-on: https://code.wireshark.org/review/7175 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-ssl.h')
-rw-r--r--epan/dissectors/packet-ssl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ssl.h b/epan/dissectors/packet-ssl.h
index 0b8cd9cd46..499ba8d22e 100644
--- a/epan/dissectors/packet-ssl.h
+++ b/epan/dissectors/packet-ssl.h
@@ -25,7 +25,10 @@
#include "ws_symbol_export.h"
+/** Maps Session-ID to pre-master secrets. */
WS_DLL_PUBLIC GHashTable *ssl_session_hash;
+/** Maps Client Random to pre-master secrets. */
+WS_DLL_PUBLIC GHashTable *ssl_crandom_hash;
WS_DLL_PUBLIC void ssl_dissector_add(guint port, const gchar *protocol, gboolean tcp);
WS_DLL_PUBLIC void ssl_dissector_delete(guint port, const gchar *protocol, gboolean tcp);