Using SSL in Haskell

Is there a complete (and good) implementation or shell for SSL in Haskell? My friend, who is studying Haskell, asked me earlier how to do TLS or SSL in Haskell, and after a little look I could not give him a good answer.

hsgnutls seems to never be taken off, and hsopenssl seems to be an incomplete implementation, after a little search in Googling and StackOverflow I did not find the simple “This is how you do it”. explanation. Is there a defacto method that I am missing, or are you stuck using a partially implemented library?

+6
source share
1 answer

Have you looked at HsOpenSSL or tls ?

HsOpenSSL is binding with OpenSSL, and tls is the TLS implementation in Haskell.

+5
source

Source: https://habr.com/ru/post/909715/


All Articles