fix: lost secondary keyshares (#238)

Fix an unchecked overriding behavior which may lose pre-created handshake keys.
This commit is contained in:
Gaukas Wang 2023-09-04 14:38:20 -06:00 committed by GitHub
parent fc79497d3f
commit 67192c2a5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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