summaryrefslogtreecommitdiff
path: root/notes.txt
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2013-12-03 11:13:40 +0100
committerPeter Wu <lekensteyn@gmail.com>2013-12-03 11:13:40 +0100
commit2d0eb51d83b941c71dd8e33e6c025bd6fbb0a742 (patch)
tree172610f7aeaf3e64f06926e113ed41cdb33c56d6 /notes.txt
parent3751b61cdaaea13f51c6196a24a53139421f56b7 (diff)
downloadwireshark-notes-2d0eb51d83b941c71dd8e33e6c025bd6fbb0a742.tar.gz
notes: cmake command, SSLKEYLOGFILE, RC2
Diffstat (limited to 'notes.txt')
-rw-r--r--notes.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/notes.txt b/notes.txt
index 2dca46d..04c9e60 100644
--- a/notes.txt
+++ b/notes.txt
@@ -1,6 +1,9 @@
/tmp/wireshark/configure --prefix=/tmp/wsroot --with-ssl --with-gtk2 --without-gtk3
+# CMake rocks!
+cmake -DCMAKE_INSTALL_PREFIX=/tmp/wsroot -DENABLE_GTK3=0 -DENABLE_PORTAUDIO=0 -DENABLE_QT5=0 -DENABLE_GEOIP=0 -DENABLE_KERBEROS=0 -DENABLE_SMI=0
-# libgcrypt RC2 fixing
+# libgcrypt RC2 fixing (accepted in git
+# http://lists.gnupg.org/pipermail/gcrypt-devel/2013-October/002428.html)
# Fix compile issue (missing fig2dev in doc, Makefile.in in tests is not
# generated (Makefile/autotools of the repo too old?))
sed '/SUBDIRS/s/ doc tests//' -i Makefile.am && ./autogen.sh
@@ -18,6 +21,9 @@ openssl ciphers -V | awk -F'[, ]+' '{print $2, $3, $5}' | while read n1 n2 name;
grep -E "$(cut -d' ' -f1 unsuppported-new.txt openssl-supported-ciphers.txt | sort | uniq -d | tr '\n' '|' | sed 's/|$//')" unsuppported-new.txt -w
+# Get keys from NSS applications:
+SSLKEYLOGFILE=premaster.txt firefox
+
# command to use key file from NSS
/tmp/wsroot/bin/wireshark -o ssl.keylog_file:$PWD/s_client-keys.txt s_client.capng -o http.ssl.port:4433 -o ssl.debug_file:s_client-debug.txt