wai/warp-tls
2014-04-24 08:07:28 +03:00
..
Network/Wai/Handler Fix warp-tls for recent warp changes 2014-04-24 08:07:28 +03:00
certificate.pem warp-tls added 2012-01-10 16:15:57 +02:00
graceful-pong.hs runTLSSocket 2012-10-10 19:57:03 +09:00
key.pem warp-tls added 2012-01-10 16:15:57 +02:00
LICENSE Update license with MIT license 2012-05-20 19:53:58 -07:00
pong.hs Fix isSecure in warp-tls #245 2014-04-08 19:03:11 +03:00
pong.txt warp-tls added 2012-01-10 16:15:57 +02:00
README.md Added warp-tls README 2013-02-17 12:47:11 +02:00
Setup.lhs warp-tls added 2012-01-10 16:15:57 +02:00
warp-tls.cabal Fix warp-tls for recent warp changes 2014-04-24 08:07:28 +03:00

In order to generate a self-signed certificate for testing, try the following:

openssl genrsa -out key.pem 2048
openssl req -new -key key.pem -out certificate.csr
openssl x509 -req -in certificate.csr -signkey key.pem -out certificate.pem