mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: minor refactors for readability
Change-Id: I93e73f16474b4b31f7097af2f9479822dfc34c5c Reviewed-on: https://go-review.googlesource.com/20678 Reviewed-by: Adam Langley <agl@golang.org>
This commit is contained in:
parent
ed447ce705
commit
15b10f5314
5 changed files with 33 additions and 39 deletions
|
@ -1316,11 +1316,8 @@ func (m *certificateRequestMsg) unmarshal(data []byte) bool {
|
|||
m.certificateAuthorities = append(m.certificateAuthorities, cas[:caLen])
|
||||
cas = cas[caLen:]
|
||||
}
|
||||
if len(data) > 0 {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
return len(data) == 0
|
||||
}
|
||||
|
||||
type certificateVerifyMsg struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue