hs-tls/tls.cabal

80 lines
2.7 KiB
Text
Raw Normal View History

2010-09-09 21:47:19 +00:00
Name: tls
Version: 0.8.1
2010-09-09 21:47:19 +00:00
Description:
Native Haskell TLS and SSL protocol implementation for server and client.
2010-09-09 21:47:19 +00:00
.
This provides a high-level implementation of a sensitive security protocol,
eliminating a common set of security issues through the use of the advanced
type system, high level constructions and common Haskell features.
.
Currently implement the SSL3.0, TLS1.0, TLS1.1 and TLS1.2 protocol,
with only RSA supported for Key Exchange.
.
Only core protocol available here, have a look at the
<http://hackage.haskell.org/package/tls-extra/> package for default
ciphers, compressions and certificates functions.
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
data-files: README.md, TODO
2010-09-09 21:47:19 +00:00
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
, cereal >= 0.3
, bytestring
, crypto-api >= 0.5
, cryptocipher >= 0.2.5
, certificate >= 0.9.4 && < 1.0
2011-03-02 08:43:05 +00:00
Exposed-modules: Network.TLS
Network.TLS.Cipher
2011-03-02 08:43:05 +00:00
Network.TLS.Compression
Network.TLS.Internal
2011-03-02 08:43:05 +00:00
other-modules: Network.TLS.Cap
Network.TLS.Struct
2010-09-09 21:47:19 +00:00
Network.TLS.MAC
2011-03-01 20:01:40 +00:00
Network.TLS.Core
Network.TLS.Crypto
2010-09-09 21:47:19 +00:00
Network.TLS.Packet
Network.TLS.Record
2010-09-09 21:47:19 +00:00
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 Tests
Main-is: Tests.hs
if flag(test)
Buildable: True
2011-02-20 17:35:09 +00:00
Build-Depends: base >= 3 && < 5
, QuickCheck >= 2
2011-10-23 16:54:07 +00:00
, test-framework
, test-framework-quickcheck2
2011-02-20 17:35:09 +00:00
, bytestring
2010-09-09 21:47:19 +00:00
else
Buildable: False
2011-10-23 16:54:07 +00:00
ghc-options: -Wall -fhpc
2010-09-09 21:47:19 +00:00
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls