You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frp/vendor/golang.org/x/net/http2/h2demo
fatedier 0f1005ff61 using glide 7 years ago
..
.gitignore using glide 7 years ago
Makefile using glide 7 years ago
README using glide 7 years ago
h2demo.go using glide 7 years ago
launch.go using glide 7 years ago
rootCA.key using glide 7 years ago
rootCA.pem using glide 7 years ago
rootCA.srl using glide 7 years ago
server.crt using glide 7 years ago
server.key using glide 7 years ago
tmpl.go using glide 7 years ago

README

Client:
 -- Firefox nightly with about:config network.http.spdy.enabled.http2draft set true
 -- Chrome: go to chrome://flags/#enable-spdy4, save and restart (button at bottom)

Make CA:
$ openssl genrsa -out rootCA.key 2048
$ openssl req -x509 -new -nodes -key rootCA.key -days 1024 -out rootCA.pem
... install that to Firefox

Make cert:
$ openssl genrsa -out server.key 2048
$ openssl req -new -key server.key -out server.csr
$ openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 500