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-27 17:24:23 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-06-27 17:24:23 +0400
commit51af66d0916a387877f7e4e95de5011b47a345dc (patch)
tree6aeb1654c83d71edf67ce9b079c305836c34caee /core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
parent4271a1a2fb9b29e8eda109679f2baaa78dbdf9e8 (diff)
Store server extensions in session parameters and process on resumption
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java b/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
index 6856d486..73a13c15 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
@@ -19,12 +19,6 @@ public class TlsServerProtocol
protected TlsServer tlsServer = null;
protected TlsServerContextImpl tlsServerContext = null;
- protected int[] offeredCipherSuites = null;
- protected short[] offeredCompressionMethods = null;
- protected Hashtable clientExtensions = null;
-
- protected Hashtable serverExtensions = null;
-
protected TlsKeyExchange keyExchange = null;
protected TlsCredentials serverCredentials = null;
protected CertificateRequest certificateRequest = null;
@@ -74,10 +68,6 @@ public class TlsServerProtocol
{
super.cleanupHandshake();
- this.offeredCipherSuites = null;
- this.offeredCompressionMethods = null;
- this.clientExtensions = null;
- this.serverExtensions = null;
this.keyExchange = null;
this.serverCredentials = null;
this.certificateRequest = null;