mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 04:57:35 +03:00
fix: lost secondary keyshares
Fix an unchecked overriding behavior which may lose pre-created handshake keys.
This commit is contained in:
parent
fc79497d3f
commit
a9a1cc0137
1 changed files with 3 additions and 1 deletions
|
@ -567,7 +567,9 @@ func (c *UConn) clientHandshake(ctx context.Context) (err error) {
|
||||||
hs13 := c.HandshakeState.toPrivate13()
|
hs13 := c.HandshakeState.toPrivate13()
|
||||||
hs13.serverHello = serverHello
|
hs13.serverHello = serverHello
|
||||||
hs13.hello = hello
|
hs13.hello = hello
|
||||||
|
if hs13.keySharesParams == nil {
|
||||||
hs13.keySharesParams = NewKeySharesParameters()
|
hs13.keySharesParams = NewKeySharesParameters()
|
||||||
|
}
|
||||||
if !sessionIsLocked {
|
if !sessionIsLocked {
|
||||||
hs13.earlySecret = earlySecret
|
hs13.earlySecret = earlySecret
|
||||||
hs13.binderKey = binderKey
|
hs13.binderKey = binderKey
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue