Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2013-06-24 06:41:43 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-06-24 06:41:43 +0400
commit23db51bdbb4a1d0f9293b2a2eae0a02f3d507c01 (patch)
treeec420e224d9ac155099d4cfac0d29a90c81d13aa /core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java
parentc1d74a5d5599eb3a991b979a3badce0e496e5e7f (diff)
Update close_notify javadoc
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java b/core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java
index 5e3269bd..91366be0 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/AlertDescription.java
@@ -5,11 +5,12 @@ package org.bouncycastle.crypto.tls;
*/
public class AlertDescription
{
-
/**
* This message notifies the recipient that the sender will not send any more messages on this
- * connection. The session becomes unresumable if any connection is terminated without proper
- * close_notify messages with level equal to warning.
+ * connection. Note that as of TLS 1.1, failure to properly close a connection no longer
+ * requires that a session not be resumed. This is a change from TLS 1.0 ("The session becomes
+ * unresumable if any connection is terminated without proper close_notify messages with level
+ * equal to warning.") to conform with widespread implementation practice.
*/
public static final short close_notify = 0;