mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: add SessionState.Extra
This can be used by applications to store additional data in a session. Fixes #57753 For #60105 Change-Id: Ib42387ad64750fa8dbbdf51de5e9c86378bef0ee Reviewed-on: https://go-review.googlesource.com/c/go/+/496822 Run-TryBot: Filippo Valsorda <filippo@golang.org> Reviewed-by: Marten Seemann <martenseemann@gmail.com> Reviewed-by: Damien Neil <dneil@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
parent
7147979294
commit
866e886415
31 changed files with 2207 additions and 2185 deletions
|
@ -346,6 +346,7 @@ func (*SessionState) Generate(rand *rand.Rand, size int) reflect.Value {
|
|||
s.cipherSuite = uint16(rand.Intn(math.MaxUint16))
|
||||
s.createdAt = uint64(rand.Int63())
|
||||
s.secret = randomBytes(rand.Intn(100)+1, rand)
|
||||
s.Extra = randomBytes(rand.Intn(100), rand)
|
||||
if s.isClient || rand.Intn(10) > 5 {
|
||||
if rand.Intn(10) > 5 {
|
||||
s.peerCertificates = sessionTestCerts
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue