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:
Adam Langley 2014-09-26 11:02:09 +10:00 committed by Andrew Gerrand
parent bb890c0d27
commit a59ca4a0e7
5 changed files with 206 additions and 1 deletions

View file

@ -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
}