Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using SSL in Haskell

Is there a complete(and good) implementation or wrapper for SSL in Haskell? My friend who is learning Haskell asked me earlier how to do TLS or SSL in Haskell, and after a little looking I couldn't give him a good answer.

hsgnutls appears to have never taken off, and hsopenssl seems to be an incomplete implementation, after a little Googling and StackOverflow search I didn't find a simple "This is how you do it." explanation. Is there a defacto way that I am missing or are you stuck using a partially implemented library?

like image 669
jroesch Avatar asked Mar 01 '12 04:03

jroesch


1 Answers

Have you looked at either HsOpenSSL or tls?

HsOpenSSL is a binding to OpenSSL, and tls is a Haskell implementation of TLS.

like image 86
Antoine Latter Avatar answered Nov 09 '22 18:11

Antoine Latter