Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

cipher_suites.go 9.9 KiB

crypto/tls: decouple handshake signatures from the handshake hash. Prior to TLS 1.2, the handshake had a pleasing property that one could incrementally hash it and, from that, get the needed hashes for both the CertificateVerify and Finished messages. TLS 1.2 introduced negotiation for the signature and hash and it became possible for the handshake hash to be, say, SHA-384, but for the CertificateVerify to sign the handshake with SHA-1. The problem is that one doesn't know in advance which hashes will be needed and thus the handshake needs to be buffered. Go ignored this, always kept a single handshake hash, and any signatures over the handshake had to use that hash. However, there are a set of servers that inspect the client's offered signature hash functions and will abort the handshake if one of the server's certificates is signed with a hash function outside of that set. https://robertsspaceindustries.com/ is an example of such a server. Clearly not a lot of thought happened when that server code was written, but its out there and we have to deal with it. This change decouples the handshake hash from the CertificateVerify hash. This lays the groundwork for advertising support for SHA-384 but doesn't actually make that change in the interests of reviewability. Updating the advertised hash functions will cause changes in many of the testdata/ files and some errors might get lost in the noise. This change only needs to update four testdata/ files: one because a SHA-384-based handshake is now being signed with SHA-256 and the others because the TLS 1.2 CertificateRequest message now includes SHA-1. This change also has the effect of adding support for client-certificates in SSLv3 servers. However, SSLv3 is now disabled by default so this should be moot. It would be possible to avoid much of this change and just support SHA-384 for the ServerKeyExchange as the SKX only signs over the nonces and SKX params (a design mistake in TLS). However, that would leave Go in the odd situation where it advertised support for SHA-384, but would only use the handshake hash when signing client certificates. I fear that'll just cause problems in the future. Much of this code was written by davidben@ for the purposes of testing BoringSSL. Partly addresses #9757 Change-Id: I5137a472b6076812af387a5a69fc62c7373cd485 Reviewed-on: https://go-review.googlesource.com/9415 Run-TryBot: Adam Langley <agl@golang.org> Reviewed-by: Adam Langley <agl@golang.org>
9 lat temu
crypto/tls: decouple handshake signatures from the handshake hash. Prior to TLS 1.2, the handshake had a pleasing property that one could incrementally hash it and, from that, get the needed hashes for both the CertificateVerify and Finished messages. TLS 1.2 introduced negotiation for the signature and hash and it became possible for the handshake hash to be, say, SHA-384, but for the CertificateVerify to sign the handshake with SHA-1. The problem is that one doesn't know in advance which hashes will be needed and thus the handshake needs to be buffered. Go ignored this, always kept a single handshake hash, and any signatures over the handshake had to use that hash. However, there are a set of servers that inspect the client's offered signature hash functions and will abort the handshake if one of the server's certificates is signed with a hash function outside of that set. https://robertsspaceindustries.com/ is an example of such a server. Clearly not a lot of thought happened when that server code was written, but its out there and we have to deal with it. This change decouples the handshake hash from the CertificateVerify hash. This lays the groundwork for advertising support for SHA-384 but doesn't actually make that change in the interests of reviewability. Updating the advertised hash functions will cause changes in many of the testdata/ files and some errors might get lost in the noise. This change only needs to update four testdata/ files: one because a SHA-384-based handshake is now being signed with SHA-256 and the others because the TLS 1.2 CertificateRequest message now includes SHA-1. This change also has the effect of adding support for client-certificates in SSLv3 servers. However, SSLv3 is now disabled by default so this should be moot. It would be possible to avoid much of this change and just support SHA-384 for the ServerKeyExchange as the SKX only signs over the nonces and SKX params (a design mistake in TLS). However, that would leave Go in the odd situation where it advertised support for SHA-384, but would only use the handshake hash when signing client certificates. I fear that'll just cause problems in the future. Much of this code was written by davidben@ for the purposes of testing BoringSSL. Partly addresses #9757 Change-Id: I5137a472b6076812af387a5a69fc62c7373cd485 Reviewed-on: https://go-review.googlesource.com/9415 Run-TryBot: Adam Langley <agl@golang.org> Reviewed-by: Adam Langley <agl@golang.org>
9 lat temu
crypto/tls: decouple handshake signatures from the handshake hash. Prior to TLS 1.2, the handshake had a pleasing property that one could incrementally hash it and, from that, get the needed hashes for both the CertificateVerify and Finished messages. TLS 1.2 introduced negotiation for the signature and hash and it became possible for the handshake hash to be, say, SHA-384, but for the CertificateVerify to sign the handshake with SHA-1. The problem is that one doesn't know in advance which hashes will be needed and thus the handshake needs to be buffered. Go ignored this, always kept a single handshake hash, and any signatures over the handshake had to use that hash. However, there are a set of servers that inspect the client's offered signature hash functions and will abort the handshake if one of the server's certificates is signed with a hash function outside of that set. https://robertsspaceindustries.com/ is an example of such a server. Clearly not a lot of thought happened when that server code was written, but its out there and we have to deal with it. This change decouples the handshake hash from the CertificateVerify hash. This lays the groundwork for advertising support for SHA-384 but doesn't actually make that change in the interests of reviewability. Updating the advertised hash functions will cause changes in many of the testdata/ files and some errors might get lost in the noise. This change only needs to update four testdata/ files: one because a SHA-384-based handshake is now being signed with SHA-256 and the others because the TLS 1.2 CertificateRequest message now includes SHA-1. This change also has the effect of adding support for client-certificates in SSLv3 servers. However, SSLv3 is now disabled by default so this should be moot. It would be possible to avoid much of this change and just support SHA-384 for the ServerKeyExchange as the SKX only signs over the nonces and SKX params (a design mistake in TLS). However, that would leave Go in the odd situation where it advertised support for SHA-384, but would only use the handshake hash when signing client certificates. I fear that'll just cause problems in the future. Much of this code was written by davidben@ for the purposes of testing BoringSSL. Partly addresses #9757 Change-Id: I5137a472b6076812af387a5a69fc62c7373cd485 Reviewed-on: https://go-review.googlesource.com/9415 Run-TryBot: Adam Langley <agl@golang.org> Reviewed-by: Adam Langley <agl@golang.org>
9 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. // Copyright 2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package tls
  5. import (
  6. "crypto/aes"
  7. "crypto/cipher"
  8. "crypto/des"
  9. "crypto/hmac"
  10. "crypto/rc4"
  11. "crypto/sha1"
  12. "crypto/x509"
  13. "hash"
  14. )
  15. // a keyAgreement implements the client and server side of a TLS key agreement
  16. // protocol by generating and processing key exchange messages.
  17. type keyAgreement interface {
  18. // On the server side, the first two methods are called in order.
  19. // In the case that the key agreement protocol doesn't use a
  20. // ServerKeyExchange message, generateServerKeyExchange can return nil,
  21. // nil.
  22. generateServerKeyExchange(*Config, *Certificate, *clientHelloMsg, *serverHelloMsg) (*serverKeyExchangeMsg, error)
  23. processClientKeyExchange(*Config, *Certificate, *clientKeyExchangeMsg, uint16) ([]byte, error)
  24. // On the client side, the next two methods are called in order.
  25. // This method may not be called if the server doesn't send a
  26. // ServerKeyExchange message.
  27. processServerKeyExchange(*Config, *clientHelloMsg, *serverHelloMsg, *x509.Certificate, *serverKeyExchangeMsg) error
  28. generateClientKeyExchange(*Config, *clientHelloMsg, *x509.Certificate) ([]byte, *clientKeyExchangeMsg, error)
  29. }
  30. const (
  31. // suiteECDH indicates that the cipher suite involves elliptic curve
  32. // Diffie-Hellman. This means that it should only be selected when the
  33. // client indicates that it supports ECC with a curve and point format
  34. // that we're happy with.
  35. suiteECDHE = 1 << iota
  36. // suiteECDSA indicates that the cipher suite involves an ECDSA
  37. // signature and therefore may only be selected when the server's
  38. // certificate is ECDSA. If this is not set then the cipher suite is
  39. // RSA based.
  40. suiteECDSA
  41. // suiteTLS12 indicates that the cipher suite should only be advertised
  42. // and accepted when using TLS 1.2.
  43. suiteTLS12
  44. // suiteSHA384 indicates that the cipher suite uses SHA384 as the
  45. // handshake hash.
  46. suiteSHA384
  47. // suiteDefaultOff indicates that this cipher suite is not included by
  48. // default.
  49. suiteDefaultOff
  50. )
  51. // A cipherSuite is a specific combination of key agreement, cipher and MAC
  52. // function. All cipher suites currently assume RSA key agreement.
  53. type cipherSuite struct {
  54. id uint16
  55. // the lengths, in bytes, of the key material needed for each component.
  56. keyLen int
  57. macLen int
  58. ivLen int
  59. ka func(version uint16) keyAgreement
  60. // flags is a bitmask of the suite* values, above.
  61. flags int
  62. cipher func(key, iv []byte, isRead bool) interface{}
  63. mac func(version uint16, macKey []byte) macFunction
  64. aead func(key, fixedNonce []byte) cipher.AEAD
  65. }
  66. var cipherSuites = []*cipherSuite{
  67. // Ciphersuite order is chosen so that ECDHE comes before plain RSA
  68. // and RC4 comes before AES (because of the Lucky13 attack).
  69. {TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, 16, 0, 4, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, aeadAESGCM},
  70. {TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, 16, 0, 4, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteTLS12, nil, nil, aeadAESGCM},
  71. {TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 32, 0, 4, ecdheRSAKA, suiteECDHE | suiteTLS12 | suiteSHA384, nil, nil, aeadAESGCM},
  72. {TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, 32, 0, 4, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteTLS12 | suiteSHA384, nil, nil, aeadAESGCM},
  73. {TLS_ECDHE_RSA_WITH_RC4_128_SHA, 16, 20, 0, ecdheRSAKA, suiteECDHE | suiteDefaultOff, cipherRC4, macSHA1, nil},
  74. {TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, 16, 20, 0, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteDefaultOff, cipherRC4, macSHA1, nil},
  75. {TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, 16, 20, 16, ecdheRSAKA, suiteECDHE, cipherAES, macSHA1, nil},
  76. {TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, 16, 20, 16, ecdheECDSAKA, suiteECDHE | suiteECDSA, cipherAES, macSHA1, nil},
  77. {TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, 32, 20, 16, ecdheRSAKA, suiteECDHE, cipherAES, macSHA1, nil},
  78. {TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, 32, 20, 16, ecdheECDSAKA, suiteECDHE | suiteECDSA, cipherAES, macSHA1, nil},
  79. {TLS_RSA_WITH_RC4_128_SHA, 16, 20, 0, rsaKA, suiteDefaultOff, cipherRC4, macSHA1, nil},
  80. {TLS_RSA_WITH_AES_128_CBC_SHA, 16, 20, 16, rsaKA, 0, cipherAES, macSHA1, nil},
  81. {TLS_RSA_WITH_AES_256_CBC_SHA, 32, 20, 16, rsaKA, 0, cipherAES, macSHA1, nil},
  82. {TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, 24, 20, 8, ecdheRSAKA, suiteECDHE, cipher3DES, macSHA1, nil},
  83. {TLS_RSA_WITH_3DES_EDE_CBC_SHA, 24, 20, 8, rsaKA, 0, cipher3DES, macSHA1, nil},
  84. }
  85. func cipherRC4(key, iv []byte, isRead bool) interface{} {
  86. cipher, _ := rc4.NewCipher(key)
  87. return cipher
  88. }
  89. func cipher3DES(key, iv []byte, isRead bool) interface{} {
  90. block, _ := des.NewTripleDESCipher(key)
  91. if isRead {
  92. return cipher.NewCBCDecrypter(block, iv)
  93. }
  94. return cipher.NewCBCEncrypter(block, iv)
  95. }
  96. func cipherAES(key, iv []byte, isRead bool) interface{} {
  97. block, _ := aes.NewCipher(key)
  98. if isRead {
  99. return cipher.NewCBCDecrypter(block, iv)
  100. }
  101. return cipher.NewCBCEncrypter(block, iv)
  102. }
  103. // macSHA1 returns a macFunction for the given protocol version.
  104. func macSHA1(version uint16, key []byte) macFunction {
  105. if version == VersionSSL30 {
  106. mac := ssl30MAC{
  107. h: sha1.New(),
  108. key: make([]byte, len(key)),
  109. }
  110. copy(mac.key, key)
  111. return mac
  112. }
  113. return tls10MAC{hmac.New(sha1.New, key)}
  114. }
  115. type macFunction interface {
  116. Size() int
  117. MAC(digestBuf, seq, header, data []byte) []byte
  118. }
  119. // fixedNonceAEAD wraps an AEAD and prefixes a fixed portion of the nonce to
  120. // each call.
  121. type fixedNonceAEAD struct {
  122. // sealNonce and openNonce are buffers where the larger nonce will be
  123. // constructed. Since a seal and open operation may be running
  124. // concurrently, there is a separate buffer for each.
  125. sealNonce, openNonce []byte
  126. aead cipher.AEAD
  127. }
  128. func (f *fixedNonceAEAD) NonceSize() int { return 8 }
  129. func (f *fixedNonceAEAD) Overhead() int { return f.aead.Overhead() }
  130. func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
  131. copy(f.sealNonce[len(f.sealNonce)-8:], nonce)
  132. return f.aead.Seal(out, f.sealNonce, plaintext, additionalData)
  133. }
  134. func (f *fixedNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
  135. copy(f.openNonce[len(f.openNonce)-8:], nonce)
  136. return f.aead.Open(out, f.openNonce, plaintext, additionalData)
  137. }
  138. func aeadAESGCM(key, fixedNonce []byte) cipher.AEAD {
  139. aes, err := aes.NewCipher(key)
  140. if err != nil {
  141. panic(err)
  142. }
  143. aead, err := cipher.NewGCM(aes)
  144. if err != nil {
  145. panic(err)
  146. }
  147. nonce1, nonce2 := make([]byte, 12), make([]byte, 12)
  148. copy(nonce1, fixedNonce)
  149. copy(nonce2, fixedNonce)
  150. return &fixedNonceAEAD{nonce1, nonce2, aead}
  151. }
  152. // ssl30MAC implements the SSLv3 MAC function, as defined in
  153. // www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt section 5.2.3.1
  154. type ssl30MAC struct {
  155. h hash.Hash
  156. key []byte
  157. }
  158. func (s ssl30MAC) Size() int {
  159. return s.h.Size()
  160. }
  161. var ssl30Pad1 = [48]byte{0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36}
  162. var ssl30Pad2 = [48]byte{0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c}
  163. func (s ssl30MAC) MAC(digestBuf, seq, header, data []byte) []byte {
  164. padLength := 48
  165. if s.h.Size() == 20 {
  166. padLength = 40
  167. }
  168. s.h.Reset()
  169. s.h.Write(s.key)
  170. s.h.Write(ssl30Pad1[:padLength])
  171. s.h.Write(seq)
  172. s.h.Write(header[:1])
  173. s.h.Write(header[3:5])
  174. s.h.Write(data)
  175. digestBuf = s.h.Sum(digestBuf[:0])
  176. s.h.Reset()
  177. s.h.Write(s.key)
  178. s.h.Write(ssl30Pad2[:padLength])
  179. s.h.Write(digestBuf)
  180. return s.h.Sum(digestBuf[:0])
  181. }
  182. // tls10MAC implements the TLS 1.0 MAC function. RFC 2246, section 6.2.3.
  183. type tls10MAC struct {
  184. h hash.Hash
  185. }
  186. func (s tls10MAC) Size() int {
  187. return s.h.Size()
  188. }
  189. func (s tls10MAC) MAC(digestBuf, seq, header, data []byte) []byte {
  190. s.h.Reset()
  191. s.h.Write(seq)
  192. s.h.Write(header)
  193. s.h.Write(data)
  194. return s.h.Sum(digestBuf[:0])
  195. }
  196. func rsaKA(version uint16) keyAgreement {
  197. return rsaKeyAgreement{}
  198. }
  199. func ecdheECDSAKA(version uint16) keyAgreement {
  200. return &ecdheKeyAgreement{
  201. sigType: signatureECDSA,
  202. version: version,
  203. }
  204. }
  205. func ecdheRSAKA(version uint16) keyAgreement {
  206. return &ecdheKeyAgreement{
  207. sigType: signatureRSA,
  208. version: version,
  209. }
  210. }
  211. // mutualCipherSuite returns a cipherSuite given a list of supported
  212. // ciphersuites and the id requested by the peer.
  213. func mutualCipherSuite(have []uint16, want uint16) *cipherSuite {
  214. for _, id := range have {
  215. if id == want {
  216. for _, suite := range cipherSuites {
  217. if suite.id == want {
  218. return suite
  219. }
  220. }
  221. return nil
  222. }
  223. }
  224. return nil
  225. }
  226. // A list of the possible cipher suite ids. Taken from
  227. // http://www.iana.org/assignments/tls-parameters/tls-parameters.xml
  228. const (
  229. TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
  230. TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000a
  231. TLS_RSA_WITH_AES_128_CBC_SHA uint16 = 0x002f
  232. TLS_RSA_WITH_AES_256_CBC_SHA uint16 = 0x0035
  233. TLS_ECDHE_ECDSA_WITH_RC4_128_SHA uint16 = 0xc007
  234. TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA uint16 = 0xc009
  235. TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA uint16 = 0xc00a
  236. TLS_ECDHE_RSA_WITH_RC4_128_SHA uint16 = 0xc011
  237. TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xc012
  238. TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA uint16 = 0xc013
  239. TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA uint16 = 0xc014
  240. TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0xc02f
  241. TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16 = 0xc02b
  242. TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0xc030
  243. TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 uint16 = 0xc02c
  244. // TLS_FALLBACK_SCSV isn't a standard cipher suite but an indicator
  245. // that the client is doing version fallback. See
  246. // https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00.
  247. TLS_FALLBACK_SCSV uint16 = 0x5600
  248. )