summaryrefslogtreecommitdiff
path: root/go/vendor/golang.org/x/net/http2/not_go16.go
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-04-12 12:58:28 +0200
committerJacob Vosmaer <jacob@gitlab.com>2017-04-12 12:58:28 +0200
commit4240f8e0f92bf77963ee030fd882050eb9f8c17d (patch)
treec38e0cedd9f4dab4e0b4f6a89c261b0646c3a63a /go/vendor/golang.org/x/net/http2/not_go16.go
parent015bf11a7ff902b51ad8c2e003bc340f5d056fd6 (diff)
downloadgitlab-shell-4240f8e0f92bf77963ee030fd882050eb9f8c17d.tar.gz
Vendor gitaly-proto 0.5.0go-hello-world
Diffstat (limited to 'go/vendor/golang.org/x/net/http2/not_go16.go')
-rw-r--r--go/vendor/golang.org/x/net/http2/not_go16.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/go/vendor/golang.org/x/net/http2/not_go16.go b/go/vendor/golang.org/x/net/http2/not_go16.go
new file mode 100644
index 0000000..efd2e12
--- /dev/null
+++ b/go/vendor/golang.org/x/net/http2/not_go16.go
@@ -0,0 +1,46 @@
+// Copyright 2015 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.
+
+// +build !go1.6
+
+package http2
+
+import (
+ "crypto/tls"
+ "net/http"
+ "time"
+)
+
+func configureTransport(t1 *http.Transport) (*Transport, error) {
+ return nil, errTransportVersion
+}
+
+func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
+ return 0
+
+}
+
+// isBadCipher reports whether the cipher is blacklisted by the HTTP/2 spec.
+func isBadCipher(cipher uint16) bool {
+ switch cipher {
+ case tls.TLS_RSA_WITH_RC4_128_SHA,
+ tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA,
+ tls.TLS_RSA_WITH_AES_128_CBC_SHA,
+ tls.TLS_RSA_WITH_AES_256_CBC_SHA,
+ tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,
+ tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
+ tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
+ tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA,
+ tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
+ tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
+ tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA:
+ // Reject cipher suites from Appendix A.
+ // "This list includes those cipher suites that do not
+ // offer an ephemeral key exchange and those that are
+ // based on the TLS null, stream or block cipher type"
+ return true
+ default:
+ return false
+ }
+}