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:
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.java4
1 files changed, 2 insertions, 2 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 b3eebc23..194f1234 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
@@ -171,7 +171,7 @@ public class TlsServerProtocol
sendServerHelloDoneMessage();
this.connection_state = CS_SERVER_HELLO_DONE;
- // TODO Seal the handshake hash list of digests
+ this.recordStream.getHandshakeHash().sealHashAlgorithms();
break;
}
@@ -728,7 +728,7 @@ public class TlsServerProtocol
message.writeToRecordStream();
- recordStream.notifyHelloComplete();
+ this.recordStream.getHandshakeHash().notifyPRFDetermined();
}
protected void sendServerHelloDoneMessage()