commsec-keyexchange-0.2.1: Key agreement for commsec.

Safe HaskellNone

Network.CommSec.KeyExchange

Synopsis

Documentation

connect :: HostName -> PortNumber -> [PublicKey] -> PrivateKey -> IO (PublicKey, Connection)Source

Connect to the specified host and port, establishing a secure, authenticated connection with a party holding the public key.

accept :: PortNumber -> [PublicKey] -> PrivateKey -> Maybe HostName -> IO (PublicKey, Connection)Source

Listen for and accept a connection on the host and port, establishing a secure, authenticated connection with a party holding the specified public key.

send :: Connection -> ByteString -> IO ()

Send a datagram, first encrypting it, using the given secure connection.

data Connection

A connection is a secure bidirectional communication channel.

Constructors

Conn 

Fields

inCtx :: MVar InContext
 
outCtx :: MVar OutContext
 
socket :: Socket
 
socketAddr :: SockAddr

address of remote

close :: Connection -> IO ()

Close a connection