diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/com/isode/stroke/tls/java/JSSEContext.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/isode/stroke/tls/java/JSSEContext.java b/src/com/isode/stroke/tls/java/JSSEContext.java index aeb9300..03a6c8f 100644 --- a/src/com/isode/stroke/tls/java/JSSEContext.java +++ b/src/com/isode/stroke/tls/java/JSSEContext.java @@ -1224,8 +1224,8 @@ public class JSSEContext extends TLSContext { /* These work for JRE 7 but may not be available for JRE 6*/ "TLSv1.2", "TLSv1.1", - /* These work for JRE 6 */ - "TLSv1", "TLS", "SSLv3" }; + /* These work for JRE 6. SSLv3 excluded to avoid POODLE vulnerability */ + "TLSv1", "TLS" }; /* Accumulate a list of problems which will be discarded if things * go well, but including in the error if things fail |