summaryrefslogtreecommitdiff
path: root/p/haskell-tls
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2014-11-16 23:44:06 +0300
committerJoachim Breitner <mail@joachim-breitner.de>2014-11-16 23:44:06 +0300
commitf6fe4a867648b8513e5d2d46a4d9129b80d06fe1 (patch)
tree38bccfb72f0990eed677f2e4380573d49bcb556e /p/haskell-tls
parent4ad99f05b7ab3300c31447d4b87d93a935fd0933 (diff)
downloadDHG_packages-f6fe4a867648b8513e5d2d46a4d9129b80d06fe1.tar.gz
haskell-tls: Disable SSL3 by default (Closes: #768164)
Diffstat (limited to 'p/haskell-tls')
-rw-r--r--p/haskell-tls/debian/changelog6
-rw-r--r--p/haskell-tls/debian/patches/no-ssl316
-rw-r--r--p/haskell-tls/debian/patches/series1
3 files changed, 23 insertions, 0 deletions
diff --git a/p/haskell-tls/debian/changelog b/p/haskell-tls/debian/changelog
index b47dfdafd..77a46b235 100644
--- a/p/haskell-tls/debian/changelog
+++ b/p/haskell-tls/debian/changelog
@@ -1,3 +1,9 @@
+haskell-tls (1.2.9-2) UNRELEASED; urgency=medium
+
+ * Disable SSL3 by default (Closes: #768164)
+
+ -- Joachim Breitner <nomeata@debian.org> Sun, 16 Nov 2014 21:43:04 +0100
+
haskell-tls (1.2.9-1) unstable; urgency=medium
* New upstream version.
diff --git a/p/haskell-tls/debian/patches/no-ssl3 b/p/haskell-tls/debian/patches/no-ssl3
new file mode 100644
index 000000000..29c94dfc2
--- /dev/null
+++ b/p/haskell-tls/debian/patches/no-ssl3
@@ -0,0 +1,16 @@
+Debian-Bug: http://bugs.debian.org/768164
+Upstream-Patch: https://github.com/vincenthz/hs-tls/commit/5353bd2f717a31fd63c2a5d67112d8d8279bd1e6
+
+Index: haskell-tls-1.2.9/Network/TLS/Parameters.hs
+===================================================================
+--- haskell-tls-1.2.9.orig/Network/TLS/Parameters.hs 2014-11-16 21:42:36.875208330 +0100
++++ haskell-tls-1.2.9/Network/TLS/Parameters.hs 2014-11-16 21:42:47.111406646 +0100
+@@ -126,7 +126,7 @@
+
+ defaultSupported :: Supported
+ defaultSupported = Supported
+- { supportedVersions = [TLS12,TLS11,TLS10,SSL3]
++ { supportedVersions = [TLS12,TLS11,TLS10]
+ , supportedCiphers = []
+ , supportedCompressions = [nullCompression]
+ , supportedHashSignatures = [ (Struct.HashSHA512, SignatureRSA)
diff --git a/p/haskell-tls/debian/patches/series b/p/haskell-tls/debian/patches/series
new file mode 100644
index 000000000..2a424751d
--- /dev/null
+++ b/p/haskell-tls/debian/patches/series
@@ -0,0 +1 @@
+no-ssl3