packages feed

tls 1.2.8 → 1.2.9

raw patch · 4 files changed

+8/−2 lines, 4 filesdep ~base

Dependency ranges changed: base

Files

Network/TLS.hs view
@@ -42,6 +42,8 @@     -- * Context object     , Context     , ctxConnection+    , TLSParams+    , HasBackend      -- * Creating a context     , contextNew@@ -107,7 +109,7 @@     , exceptionValidationCache     ) where -import Network.TLS.Backend (Backend(..))+import Network.TLS.Backend (Backend(..), HasBackend) import Network.TLS.Struct ( TLSError(..), TLSException(..)                           , HashAndSignatureAlgorithm, HashAlgorithm(..), SignatureAlgorithm(..)                           , Header(..), ProtocolType(..), CertificateType(..)
Network/TLS/Receiving.hs view
@@ -8,6 +8,8 @@ -- the Receiving module contains calls related to unmarshalling packets according -- to the TLS state --+{-# LANGUAGE FlexibleContexts #-}+ module Network.TLS.Receiving     ( processPacket     ) where
Network/TLS/Record/Disengage.hs view
@@ -8,6 +8,8 @@ -- Disengage a record from the Record layer. -- The record is decrypted, checked for integrity and then decompressed. --+{-# LANGUAGE FlexibleContexts #-}+ module Network.TLS.Record.Disengage         ( disengageRecord         ) where
tls.cabal view
@@ -1,5 +1,5 @@ Name:                tls-Version:             1.2.8+Version:             1.2.9 Description:    Native Haskell TLS and SSL protocol implementation for server and client.    .