2009-11-03 02:25:20 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package tls
|
|
|
|
|
|
|
|
import (
|
2009-12-15 23:33:31 +00:00
|
|
|
"crypto/hmac"
|
|
|
|
"crypto/md5"
|
|
|
|
"crypto/sha1"
|
|
|
|
"hash"
|
|
|
|
"os"
|
2009-11-03 02:25:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Split a premaster secret in two as specified in RFC 4346, section 5.
|
|
|
|
func splitPreMasterSecret(secret []byte) (s1, s2 []byte) {
|
2009-12-15 23:33:31 +00:00
|
|
|
s1 = secret[0 : (len(secret)+1)/2]
|
|
|
|
s2 = secret[len(secret)/2:]
|
|
|
|
return
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// pHash implements the P_hash function, as defined in RFC 4346, section 5.
|
2010-08-26 18:32:29 +01:00
|
|
|
func pHash(result, secret, seed []byte, hash func() hash.Hash) {
|
2009-12-15 23:33:31 +00:00
|
|
|
h := hmac.New(hash, secret)
|
|
|
|
h.Write(seed)
|
|
|
|
a := h.Sum()
|
2009-11-03 02:25:20 +00:00
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
j := 0
|
2009-11-03 02:25:20 +00:00
|
|
|
for j < len(result) {
|
2009-12-15 23:33:31 +00:00
|
|
|
h.Reset()
|
|
|
|
h.Write(a)
|
|
|
|
h.Write(seed)
|
|
|
|
b := h.Sum()
|
|
|
|
todo := len(b)
|
2009-11-03 02:25:20 +00:00
|
|
|
if j+todo > len(result) {
|
2009-11-10 05:13:17 +00:00
|
|
|
todo = len(result) - j
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
2009-12-15 23:33:31 +00:00
|
|
|
copy(result[j:j+todo], b)
|
|
|
|
j += todo
|
2009-11-03 02:25:20 +00:00
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
h.Reset()
|
|
|
|
h.Write(a)
|
|
|
|
a = h.Sum()
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// pRF11 implements the TLS 1.1 pseudo-random function, as defined in RFC 4346, section 5.
|
|
|
|
func pRF11(result, secret, label, seed []byte) {
|
2010-08-26 18:32:29 +01:00
|
|
|
hashSHA1 := sha1.New
|
|
|
|
hashMD5 := md5.New
|
2009-11-03 02:25:20 +00:00
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
labelAndSeed := make([]byte, len(label)+len(seed))
|
|
|
|
copy(labelAndSeed, label)
|
|
|
|
copy(labelAndSeed[len(label):], seed)
|
2009-11-03 02:25:20 +00:00
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
s1, s2 := splitPreMasterSecret(secret)
|
|
|
|
pHash(result, s1, labelAndSeed, hashMD5)
|
|
|
|
result2 := make([]byte, len(result))
|
|
|
|
pHash(result2, s2, labelAndSeed, hashSHA1)
|
2009-11-03 02:25:20 +00:00
|
|
|
|
|
|
|
for i, b := range result2 {
|
2009-11-09 20:07:39 +00:00
|
|
|
result[i] ^= b
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2009-12-15 23:33:31 +00:00
|
|
|
tlsRandomLength = 32 // Length of a random nonce in TLS 1.1.
|
|
|
|
masterSecretLength = 48 // Length of a master secret in TLS 1.1.
|
|
|
|
finishedVerifyLength = 12 // Length of verify_data in a Finished message.
|
2009-11-03 02:25:20 +00:00
|
|
|
)
|
|
|
|
|
2010-02-26 00:01:29 +00:00
|
|
|
var masterSecretLabel = []byte("master secret")
|
|
|
|
var keyExpansionLabel = []byte("key expansion")
|
|
|
|
var clientFinishedLabel = []byte("client finished")
|
|
|
|
var serverFinishedLabel = []byte("server finished")
|
2009-11-03 02:25:20 +00:00
|
|
|
|
|
|
|
// keysFromPreMasterSecret generates the connection keys from the pre master
|
|
|
|
// secret, given the lengths of the MAC and cipher keys, as defined in RFC
|
|
|
|
// 4346, section 6.3.
|
|
|
|
func keysFromPreMasterSecret11(preMasterSecret, clientRandom, serverRandom []byte, macLen, keyLen int) (masterSecret, clientMAC, serverMAC, clientKey, serverKey []byte) {
|
2009-12-15 23:33:31 +00:00
|
|
|
var seed [tlsRandomLength * 2]byte
|
|
|
|
copy(seed[0:len(clientRandom)], clientRandom)
|
|
|
|
copy(seed[len(clientRandom):], serverRandom)
|
|
|
|
masterSecret = make([]byte, masterSecretLength)
|
|
|
|
pRF11(masterSecret, preMasterSecret, masterSecretLabel, seed[0:])
|
|
|
|
|
|
|
|
copy(seed[0:len(clientRandom)], serverRandom)
|
|
|
|
copy(seed[len(serverRandom):], clientRandom)
|
|
|
|
|
|
|
|
n := 2*macLen + 2*keyLen
|
|
|
|
keyMaterial := make([]byte, n)
|
|
|
|
pRF11(keyMaterial, masterSecret, keyExpansionLabel, seed[0:])
|
|
|
|
clientMAC = keyMaterial[0:macLen]
|
|
|
|
serverMAC = keyMaterial[macLen : macLen*2]
|
|
|
|
clientKey = keyMaterial[macLen*2 : macLen*2+keyLen]
|
|
|
|
serverKey = keyMaterial[macLen*2+keyLen:]
|
|
|
|
return
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// A finishedHash calculates the hash of a set of handshake messages suitable
|
|
|
|
// for including in a Finished message.
|
|
|
|
type finishedHash struct {
|
2009-12-15 23:33:31 +00:00
|
|
|
clientMD5 hash.Hash
|
|
|
|
clientSHA1 hash.Hash
|
|
|
|
serverMD5 hash.Hash
|
|
|
|
serverSHA1 hash.Hash
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newFinishedHash() finishedHash {
|
2009-11-09 20:07:39 +00:00
|
|
|
return finishedHash{md5.New(), sha1.New(), md5.New(), sha1.New()}
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h finishedHash) Write(msg []byte) (n int, err os.Error) {
|
2009-12-15 23:33:31 +00:00
|
|
|
h.clientMD5.Write(msg)
|
|
|
|
h.clientSHA1.Write(msg)
|
|
|
|
h.serverMD5.Write(msg)
|
|
|
|
h.serverSHA1.Write(msg)
|
|
|
|
return len(msg), nil
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// finishedSum calculates the contents of the verify_data member of a Finished
|
|
|
|
// message given the MD5 and SHA1 hashes of a set of handshake messages.
|
|
|
|
func finishedSum(md5, sha1, label, masterSecret []byte) []byte {
|
2009-12-15 23:33:31 +00:00
|
|
|
seed := make([]byte, len(md5)+len(sha1))
|
|
|
|
copy(seed, md5)
|
|
|
|
copy(seed[len(md5):], sha1)
|
|
|
|
out := make([]byte, finishedVerifyLength)
|
|
|
|
pRF11(out, masterSecret, label, seed)
|
|
|
|
return out
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// clientSum returns the contents of the verify_data member of a client's
|
|
|
|
// Finished message.
|
|
|
|
func (h finishedHash) clientSum(masterSecret []byte) []byte {
|
2009-12-15 23:33:31 +00:00
|
|
|
md5 := h.clientMD5.Sum()
|
|
|
|
sha1 := h.clientSHA1.Sum()
|
|
|
|
return finishedSum(md5, sha1, clientFinishedLabel, masterSecret)
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// serverSum returns the contents of the verify_data member of a server's
|
|
|
|
// Finished message.
|
|
|
|
func (h finishedHash) serverSum(masterSecret []byte) []byte {
|
2009-12-15 23:33:31 +00:00
|
|
|
md5 := h.serverMD5.Sum()
|
|
|
|
sha1 := h.serverSHA1.Sum()
|
|
|
|
return finishedSum(md5, sha1, serverFinishedLabel, masterSecret)
|
2009-11-03 02:25:20 +00:00
|
|
|
}
|