summaryrefslogtreecommitdiff
path: root/generate-wireshark-cs
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2013-12-09 23:36:03 +0100
committerPeter Wu <lekensteyn@gmail.com>2013-12-09 23:36:03 +0100
commit8fc4f6c45dc802437376e49dc9c11f2a033dd4c5 (patch)
treed72f32c826ef86c59d49631719a546f4cf5ede26 /generate-wireshark-cs
parentd98f455044a1ab47b1942eec7c4aa750b2657458 (diff)
downloadwireshark-notes-8fc4f6c45dc802437376e49dc9c11f2a033dd4c5.tar.gz
generate-wireshark-cs: add missing EXPORT1024 case
Fixes: Unknown kex in 0x0060 TLS_RSA_EXPORT1024_WITH_RC4_56_MD5 (tmp=RSA_EXPORT1024) Unknown kex in 0x0061 TLS_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 (tmp=RSA_EXPORT1024) Unknown kex in 0x0062 TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA (tmp=RSA_EXPORT1024) Unknown kex in 0x0064 TLS_RSA_EXPORT1024_WITH_RC4_56_SHA (tmp=RSA_EXPORT1024) But to be honest, is there any implementation that actually use these cipher suites...?
Diffstat (limited to 'generate-wireshark-cs')
-rwxr-xr-xgenerate-wireshark-cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/generate-wireshark-cs b/generate-wireshark-cs
index 269e78b..85a62fc 100755
--- a/generate-wireshark-cs
+++ b/generate-wireshark-cs
@@ -39,6 +39,7 @@ p() {
tmp=${1%%_WITH_*}
tmp=${tmp%_EXPORT}
+ tmp=${tmp%_EXPORT1024}
tmp=${tmp#TLS_}
case $tmp in
PSK) kex=PSK ;;