warp-tls

HTTP over SSL/TLS support for Warp via the TLS package

http://github.com/yesodweb/wai

Version on this page:3.0.2@rev:1
LTS Haskell 22.20:3.4.5
Stackage Nightly 2024-05-04:3.4.5
Latest on Hackage:3.4.5

See all snapshots warp-tls appears in

MIT licensed by Michael Snoyman
Maintained by [email protected]
This version can be pinned in stack with:warp-tls-3.0.2@sha256:24ca7da4a6766a4583c8ee82b22bbf0d5b8c70d4d0ac43ead58c09c6c24e696f,1328

Module documentation for 3.0.2

warp-tls

Serve WAI applications using the Warp webserver and the Haskell TLS library.

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

Changes

3.0.2

  • Allow warp-tls to request client certificates. #337

3.0.1.4

Add additional Diffie-Hellman RSA and DSA ciphers to warp-tls.

3.0.1.3

Unable to allow insecure connections with warp-tls #324

3.0.1.2

Make sure Timer is tickled in sendfile. #323

3.0.1

Support for in-memory certificates and keys