mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
fix: lost secondary keyshares (#238)
Fix an unchecked overriding behavior which may lose pre-created handshake keys.
This commit is contained in:
parent
fc79497d3f
commit
67192c2a5e
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.serverHello = serverHello
|
||||
hs13.hello = hello
|
||||
hs13.keySharesParams = NewKeySharesParameters()
|
||||
if hs13.keySharesParams == nil {
|
||||
hs13.keySharesParams = NewKeySharesParameters()
|
||||
}
|
||||
if !sessionIsLocked {
|
||||
hs13.earlySecret = earlySecret
|
||||
hs13.binderKey = binderKey
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue