hs-tls/tls.cabal

93 lines
3.3 KiB
Text
Raw Normal View History

2010-09-09 21:47:19 +00:00
Name: tls
Version: 1.0.0
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
extra-source-files: Tests/*.hs
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
2012-04-19 20:28:05 +00:00
, cryptocipher >= 0.3.0 && < 0.4.0
2012-04-20 20:05:28 +00:00
, certificate >= 1.2.0 && < 1.3.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
2011-03-01 20:01:40 +00:00
Network.TLS.Core
Network.TLS.Context
Network.TLS.Crypto
Network.TLS.Extension
Network.TLS.Handshake
Network.TLS.IO
Network.TLS.MAC
Network.TLS.Measurement
2010-09-09 21:47:19 +00:00
Network.TLS.Packet
Network.TLS.Record
Network.TLS.Record.Types
Network.TLS.Record.Engage
Network.TLS.Record.Disengage
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
Network.TLS.Types
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
, time
, cprng-aes
, cryptocipher >= 0.3.0
2010-09-09 21:47:19 +00:00
else
Buildable: False
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures -fhpc
2010-09-09 21:47:19 +00:00
source-repository head
type: git
location: git://github.com/vincenthz/hs-tls