Update version of DTLS library

Make sure we use a version of the DTLS library that contains the
following fingerprinting fixes:

Only send supported_groups extension in ClientHello
Do not include IP addresses as SNI values

These changes have been merged upstream into pion/dtls.
This commit is contained in:
Cecylia Bocovich 2021-12-10 10:29:47 -05:00
parent 221f1c41c9
commit 738bd464ea
No known key found for this signature in database
GPG key ID: 009DE379FD9B7B90
2 changed files with 18 additions and 3 deletions

7
go.mod
View file

@ -17,8 +17,9 @@ require (
github.com/xtaci/kcp-go/v5 v5.6.1
github.com/xtaci/smux v1.5.15
gitlab.torproject.org/tpo/anti-censorship/geoip v0.0.0-20210928150955-7ce4b3d98d01
golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4
golang.org/x/sys v0.0.0-20210317225723-c4fcb01b228e // indirect
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
golang.org/x/net v0.0.0-20211201190559-0a0e4e1bb54c
google.golang.org/protobuf v1.23.0
)
replace github.com/pion/dtls/v2 => github.com/pion/dtls/v2 v2.0.12