summaryrefslogtreecommitdiffstats
path: root/util/TLSProxy/ServerKeyExchange.pm
diff options
context:
space:
mode:
Diffstat (limited to 'util/TLSProxy/ServerKeyExchange.pm')
-rw-r--r--util/TLSProxy/ServerKeyExchange.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/TLSProxy/ServerKeyExchange.pm b/util/TLSProxy/ServerKeyExchange.pm
index 6e5b4cdcb4..7640b3f55b 100644
--- a/util/TLSProxy/ServerKeyExchange.pm
+++ b/util/TLSProxy/ServerKeyExchange.pm
@@ -42,9 +42,9 @@ sub parse
{
my $self = shift;
- #Minimal SKE parsing. Only supports DHE at the moment (if its not DHE
- #the parsing data will be trash...which is ok as long as we don't try to
- #use it)
+ #Minimal SKE parsing. Only supports one known DHE ciphersuite at the moment
+ return if (TLSProxy::Proxy->ciphersuite()
+ != TLSProxy::Message::CIPHER_ADH_AES_128_SHA);
my $p_len = unpack('n', $self->data);
my $ptr = 2;