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
|
@ -126,11 +126,7 @@ func (s *sessionState) unmarshal(data []byte) bool {
|
|||
data = data[certLen:]
|
||||
}
|
||||
|
||||
if len(data) > 0 {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
return len(data) == 0
|
||||
}
|
||||
|
||||
func (c *Conn) encryptTicket(state *sessionState) ([]byte, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue