hs-tls/Network/TLS.hs
Vincent Hanquez a7aaa3eee7 Remove the hardcoded srandomgen in favor of any cryptorandomgen instance.
srandomgen is available separately in the cprng-aes package as Crypto.Random.AESCtr
2011-04-11 19:56:43 +01:00

47 lines
917 B
Haskell

-- |
-- Module : Network.TLS
-- License : BSD-style
-- Maintainer : Vincent Hanquez <vincent@snarc.org>
-- Stability : experimental
-- Portability : unknown
--
module Network.TLS
(
-- * Context configuration
TLSParams(..)
, defaultParams
-- * Context object
, TLSCtx
, ctxHandle
-- * Creating a context
, client
, server
-- * Initialisation and Termination of context
, bye
, handshake
-- * High level API
, sendData
, recvData
-- * Crypto Key
, PrivateKey(..)
-- * Compressions & Predefined compressions
, Compression
, nullCompression
-- * Ciphers & Predefined ciphers
, Cipher
-- * Versions
, Version(..)
-- * Errors
, TLSError(..)
) where
import Network.TLS.Struct (Version(..), TLSError(..))
import Network.TLS.Crypto (PrivateKey(..))
import Network.TLS.Cipher (Cipher(..))
import Network.TLS.Compression (Compression(..), nullCompression)
import Network.TLS.Core