mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 13:07:36 +03:00
crypto/tls: use cryptobyte.NewFixedBuilder
Change-Id: Ia2a9465680e766336dae34f5d2b3cb412185bf1f Reviewed-on: https://go-review.googlesource.com/c/go/+/318131 Trust: Filippo Valsorda <filippo@golang.org> Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org>
This commit is contained in:
parent
6ebf22f946
commit
3ada52a07f
1 changed files with 2 additions and 3 deletions
|
@ -329,8 +329,7 @@ func (m *clientHelloMsg) updateBinders(pskBinders [][]byte) {
|
||||||
m.pskBinders = pskBinders
|
m.pskBinders = pskBinders
|
||||||
if m.raw != nil {
|
if m.raw != nil {
|
||||||
lenWithoutBinders := len(m.marshalWithoutBinders())
|
lenWithoutBinders := len(m.marshalWithoutBinders())
|
||||||
// TODO(filippo): replace with NewFixedBuilder once CL 148882 is imported.
|
b := cryptobyte.NewFixedBuilder(m.raw[:lenWithoutBinders])
|
||||||
b := cryptobyte.NewBuilder(m.raw[:lenWithoutBinders])
|
|
||||||
b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
|
b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
|
||||||
for _, binder := range m.pskBinders {
|
for _, binder := range m.pskBinders {
|
||||||
b.AddUint8LengthPrefixed(func(b *cryptobyte.Builder) {
|
b.AddUint8LengthPrefixed(func(b *cryptobyte.Builder) {
|
||||||
|
@ -338,7 +337,7 @@ func (m *clientHelloMsg) updateBinders(pskBinders [][]byte) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if len(b.BytesOrPanic()) != len(m.raw) {
|
if out, err := b.Bytes(); err != nil || len(out) != len(m.raw) {
|
||||||
panic("tls: internal error: failed to update binders")
|
panic("tls: internal error: failed to update binders")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue