Skip to content

Commit

Permalink
Handle DTLS 1.2 in CertificateVerify messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fwh-dc committed Jan 23, 2024
1 parent 51291de commit 287056c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion util/perl/TLSProxy/CertificateVerify.pm
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ sub parse
my $record = ${$self->records}[0];

if (TLSProxy::Proxy->is_tls13()
|| $record->version() == TLSProxy::Record::VERS_TLS_1_2) {
|| $record->version() == TLSProxy::Record::VERS_TLS_1_2
|| $record->version() == TLSProxy::Record::VERS_DTLS_1_2) {
$sigalg = unpack('n', $remdata);
$remdata = substr($remdata, 2);
}
Expand Down

0 comments on commit 287056c

Please sign in to comment.