You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.7 KiB

14 years ago
{-# Language NoMonomorphismRestriction #-}
{-# OPTIONS_HADDOCK hide #-}
module Data.Conduit.TLS
14 years ago
( tlsinit
-- , conduitStdout
14 years ago
, module TLS
, module TLSExtra
)
where
import Control.Monad(liftM, when)
import Control.Monad.IO.Class
14 years ago
import Crypto.Random
import qualified Data.ByteString as BS
14 years ago
import qualified Data.ByteString.Lazy as BL
import Data.Conduit
import Control.Monad
14 years ago
import Network.TLS as TLS
import Network.TLS.Extra as TLSExtra
import System.IO(Handle)
14 years ago
client params gen handle = do
contextNewOnHandle handle params gen
defaultParams = defaultParamsClient
tlsinit :: (MonadIO m, MonadIO m1) =>
Bool
-> TLSParams
14 years ago
-> Handle -> m ( Source m1 BS.ByteString
, Sink BS.ByteString m1 ()
, BS.ByteString -> IO ()
, Context
)
tlsinit debug tlsParams handle = do
when debug . liftIO $ putStrLn "TLS with debug mode enabled"
14 years ago
gen <- liftIO $ (newGenIO :: IO SystemRandom) -- TODO: Find better random source?
con <- client tlsParams gen handle
handshake con
let src = forever $ do
dt <- liftIO $ recvData con
when debug (liftIO $ putStr "in: " >> BS.putStrLn dt)
yield dt
let snk = do
d <- await
case d of
Nothing -> return ()
Just x -> do
sendData con (BL.fromChunks [x])
when debug (liftIO $ putStr "out: " >> BS.putStrLn x)
snk
return ( src
14 years ago
, snk
, \s -> do
when debug (liftIO $ BS.putStrLn s)
sendData con $ BL.fromChunks [s]
, con
)