• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..04-Jun-2018-

.gitignoreH A D04-Jun-201862 65

MakefileH A D04-Jun-2018273 96

READMEH A D04-Jun-2018541 1711

h2demo.goH A D04-Jun-201815.7 KiB539479

launch.goH A D04-Jun-20188.5 KiB303266

rootCA.keyH A D04-Jun-20181.6 KiB2827

rootCA.pemH A D04-Jun-20181.5 KiB2726

rootCA.srlH A D04-Jun-201817 21

server.crtH A D04-Jun-20181.2 KiB2120

server.keyH A D04-Jun-20181.6 KiB2827

tmpl.goH A D04-Jun-201866.7 KiB1,9921,884

README

1
2Client:
3 -- Firefox nightly with about:config network.http.spdy.enabled.http2draft set true
4 -- Chrome: go to chrome://flags/#enable-spdy4, save and restart (button at bottom)
5
6Make CA:
7$ openssl genrsa -out rootCA.key 2048
8$ openssl req -x509 -new -nodes -key rootCA.key -days 1024 -out rootCA.pem
9... install that to Firefox
10
11Make cert:
12$ openssl genrsa -out server.key 2048
13$ openssl req -new -key server.key -out server.csr
14$ openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 500
15
16
17