Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
Andrea Spacca ec086b4eb3 Bump google.golang.org/api il y a 5 ans
..
.gitignore Bump google.golang.org/api il y a 5 ans
Dockerfile Bump google.golang.org/api il y a 5 ans
Makefile Bump google.golang.org/api il y a 5 ans
README Major rewrite il y a 7 ans
deployment-prod.yaml Bump google.golang.org/api il y a 5 ans
go.mod Bump google.golang.org/api il y a 5 ans
go.sum Bump google.golang.org/api il y a 5 ans
h2demo.go Bump google.golang.org/api il y a 5 ans
rootCA.key Major rewrite il y a 7 ans
rootCA.pem Major rewrite il y a 7 ans
rootCA.srl Major rewrite il y a 7 ans
server.crt Major rewrite il y a 7 ans
server.key Major rewrite il y a 7 ans
service.yaml Bump google.golang.org/api il y a 5 ans
tmpl.go Bump google.golang.org/api il y a 5 ans

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