No description
Find a file
2013-07-18 07:19:05 +01:00
core separate handshake state from state. 2013-07-18 07:19:05 +01:00
debug disable tls-checkciphers 2013-06-03 08:55:51 +01:00
extra bump version of tls-extra and debug dependencies 2013-06-02 07:55:17 +01:00
test-scripts add a nice friendly error if the certificate for stunnel are not 2013-02-09 14:20:01 +00:00
.gitignore filter out .mix 2012-08-27 08:25:08 +01:00
LICENSE update LICENSE files and add a root one. 2012-09-30 16:16:58 +01:00
README.md add simpleclient information 2012-12-04 14:15:51 +00:00
TODO remove old items 2012-10-01 06:23:28 +01:00

haskell TLS

This library provide native Haskell TLS and SSL protocol implementation for server and client.

Description

This provides a high-level implementation of a sensitive security protocol, eliminating a common set of security issues through the use of the advanced type system, high level constructions and common Haskell features.

Features

  • tiny code base (more than 20 times smaller than openSSL, and 10 times smaller than gnuTLS)
  • client certificates.
  • permissive license: BSD3.
  • supported versions: SSL3, TLS1.0, TLS1.1, TLS1.2.
  • key exchange supported: only RSA.
  • bulk algorithm supported: any stream or block ciphers.
  • supported extensions: secure renegociation, next protocol negotiation (draft 2), server name indication.

Common Issues

The tools mentioned below are all available from the tls-debug package.

Certificate issues

It's useful to run the following command, which will connect to the destination and retrieve the certificate chained used.

tls-retrievecertificate -d <destination> -p <port> -v -c

As an output it will print every certificates in the chain and will gives the issuer and subjects of each. It creates a chain where issuer of certificate is the subject of the next certificate part of the chain:

(subject #1, issuer #2) -> (subject #2, issuer #3) -> (subject #3, issuer #3)

A "CA is unknown" error indicates that your system doesn't have a certificate in the trusted store belonging to any of the node of the chain.

TLS issues

When having unknown issues with TLS, if your protocol is HTTP based it's useful to use tls-simpleclient from the tls-debug package.

tls-simpleclient -d -v <www.myserver.com> <port>

This provides useful information for debugging issues related to TLS.