hs-tls/tls.cabal

84 lines
2.6 KiB
Text
Raw Normal View History

2010-09-09 21:47:19 +00:00
Name: tls
2011-02-20 17:35:49 +00:00
Version: 0.3.3
2010-09-09 21:47:19 +00:00
Description:
native TLS protocol implementation, focusing on purity and more type-checking.
2010-09-09 21:47:19 +00:00
.
Currently implement the SSL3.0, TLS1.0 and TLS1.1 protocol.
Not yet properly secure and missing some features.
2010-09-09 21:47:19 +00:00
Do not yet use as replacement to more mature implementation.
.
only RSA supported as Key exchange for now.
2010-09-09 21:47:19 +00:00
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)
2010-09-09 21:47:19 +00:00
Build-Type: Simple
Category: Network
stability: experimental
Cabal-Version: >=1.6
2010-09-25 22:17:30 +00:00
Homepage: http://github.com/vincenthz/hs-tls
2010-09-09 21:47:19 +00:00
data-files: README, TODO
Flag test
Description: Build unit test
Default: False
Flag executable
Description: Build the executable
Default: False
Library
2011-02-20 17:35:09 +00:00
Build-Depends: base >= 3 && < 5
, mtl
, cryptohash >= 0.6
, binary >= 0.5
, cereal >= 0.3
, bytestring
, vector
, crypto-api >= 0.5
, cryptocipher >= 0.2.5
, certificate >= 0.7 && < 0.8
2010-09-09 21:47:19 +00:00
Exposed-modules: Network.TLS.Client
Network.TLS.Server
Network.TLS.Struct
Network.TLS.Cipher
Network.TLS.SRandom
2010-09-09 21:47:19 +00:00
Network.TLS.MAC
other-modules: Network.TLS.Cap
Network.TLS.Compression
Network.TLS.Crypto
2010-09-09 21:47:19 +00:00
Network.TLS.Packet
Network.TLS.State
Network.TLS.Sending
Network.TLS.Receiving
2010-09-26 17:52:58 +00:00
Network.TLS.Util
2010-09-09 21:47:19 +00:00
Network.TLS.Wire
ghc-options: -Wall
Executable stunnel
Main-is: Stunnel.hs
if flag(executable)
2011-02-20 17:35:09 +00:00
Build-Depends: network
, cmdargs
2010-09-09 21:47:19 +00:00
Buildable: True
else
Buildable: False
2010-11-30 08:19:38 +00:00
ghc-options: -Wall -fno-warn-missing-signatures
2010-09-09 21:47:19 +00:00
executable Tests
Main-is: Tests.hs
if flag(test)
Buildable: True
2011-02-20 17:35:09 +00:00
Build-Depends: base >= 3 && < 5
, HUnit
, QuickCheck >= 2
, bytestring
2010-09-09 21:47:19 +00:00
else
Buildable: False
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls