summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorFrederik Wedel-Heinen <frederik.wedel-heinen@dencrypt.dk>2024-01-23 15:18:51 +0100
committerMatt Caswell <matt@openssl.org>2024-02-09 08:13:32 +0000
commit3b3a00b62aab1e1016c2ad7f026b11cd3d0bc3b7 (patch)
treef1fc5cd07dad3a63a20493ec19c82befb81be13c /util
parent4439ed16c5742e5ffb0417d45677900e77b299f2 (diff)
Handle DTLS 1.2 in CertificateVerify messages
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23319)
Diffstat (limited to 'util')
-rw-r--r--util/perl/TLSProxy/CertificateVerify.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/perl/TLSProxy/CertificateVerify.pm b/util/perl/TLSProxy/CertificateVerify.pm
index 9592272991..c4874c89e2 100644
--- a/util/perl/TLSProxy/CertificateVerify.pm
+++ b/util/perl/TLSProxy/CertificateVerify.pm
@@ -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);
}