hs-tls/tls.cabal
2011-02-20 08:13:53 +00:00

79 lines
2.5 KiB
Text

Name: tls
Version: 0.3.2
Description:
native TLS protocol implementation, focusing on purity and more type-checking.
.
Currently implement the SSL3.0, TLS1.0 and TLS1.1 protocol.
Not yet properly secure and missing some features.
Do not yet use as replacement to more mature implementation.
.
only RSA supported as Key exchange for now.
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: Vincent Hanquez <vincent@snarc.org>
Synopsis: TLS/SSL protocol native implementation (Server and Client)
Build-Type: Simple
Category: Network
stability: experimental
Cabal-Version: >=1.6
Homepage: http://github.com/vincenthz/hs-tls
data-files: README, TODO
Flag test
Description: Build unit test
Default: False
Flag executable
Description: Build the executable
Default: False
Library
Build-Depends: base >= 3 && < 7,
mtl,
cryptohash >= 0.6,
binary >= 0.5,
cereal >= 0.3,
bytestring,
vector,
crypto-api >= 0.2,
certificate >= 0.5 && < 0.6
cryptocipher >= 0.2.5,
Exposed-modules: Network.TLS.Client
Network.TLS.Server
Network.TLS.Struct
Network.TLS.Cipher
Network.TLS.SRandom
Network.TLS.MAC
other-modules: Network.TLS.Cap
Network.TLS.Compression
Network.TLS.Crypto
Network.TLS.Packet
Network.TLS.State
Network.TLS.Sending
Network.TLS.Receiving
Network.TLS.Util
Network.TLS.Wire
ghc-options: -Wall
Executable stunnel
Main-is: Stunnel.hs
if flag(executable)
Build-Depends: network, cmdargs
Buildable: True
else
Buildable: False
ghc-options: -Wall -fno-warn-missing-signatures
executable Tests
Main-is: Tests.hs
if flag(test)
Buildable: True
Build-Depends: base >= 3 && < 7, HUnit, QuickCheck >= 2, bytestring
else
Buildable: False
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls