mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: ensure that we don't resume when tickets are disabled.
LGTM=r R=r, adg, rsc https://golang.org/cl/148080043
This commit is contained in:
parent
bb890c0d27
commit
a59ca4a0e7
5 changed files with 206 additions and 1 deletions
|
@ -153,7 +153,8 @@ func (c *Conn) encryptTicket(state *sessionState) ([]byte, error) {
|
|||
}
|
||||
|
||||
func (c *Conn) decryptTicket(encrypted []byte) (*sessionState, bool) {
|
||||
if len(encrypted) < aes.BlockSize+sha256.Size {
|
||||
if c.config.SessionTicketsDisabled ||
|
||||
len(encrypted) < aes.BlockSize+sha256.Size {
|
||||
return nil, false
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue