diff options
author | pgj <pgj@FreeBSD.org> | 2012-02-19 00:23:00 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2012-02-19 00:23:00 +0800 |
commit | 0a630c5f5083b825f1b1014861b1b3e36094fc59 (patch) | |
tree | 9280077d235d03b6b50a234aaa81bb661f0ecb4e /lang/ghc | |
parent | ce0c86dceb6bf9a475e61aa1c34382d8f76500fe (diff) | |
download | freebsd-ports-gnome-0a630c5f5083b825f1b1014861b1b3e36094fc59.tar.gz freebsd-ports-gnome-0a630c5f5083b825f1b1014861b1b3e36094fc59.tar.zst freebsd-ports-gnome-0a630c5f5083b825f1b1014861b1b3e36094fc59.zip |
Native Haskell TLS and SSL protocol implementation for server and
client.
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.
WWW: http://github.com/vincenthz/hs-tls
Obtained from: FreeBSD Haskell
Diffstat (limited to 'lang/ghc')
-rw-r--r-- | lang/ghc/bsd.hackage.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/ghc/bsd.hackage.mk b/lang/ghc/bsd.hackage.mk index a780ed52f762..7ca46d7c9291 100644 --- a/lang/ghc/bsd.hackage.mk +++ b/lang/ghc/bsd.hackage.mk @@ -230,6 +230,7 @@ test-framework-quickcheck2_port= devel/hs-test-framework-quickcheck2 testpack_port= devel/hs-testpack texmath_port= textproc/hs-texmath # executable text_port= devel/hs-text +tls_port= security/hs-tls transformers_port= devel/hs-transformers transformers-base_port= devel/hs-transformers-base TypeCompose_port= devel/hs-TypeCompose |