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-13 10:56:44 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-06-13 10:56:44 +0400
commitc47f51d07cc3472587460c43e0ab1eef17fb426b (patch)
tree7d9dd47d9e940d2b472b5d2da8eb7b7fd1245171 /core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
parent9e09d604ed74ed0c252f19d1210d7b7b312c8b7e (diff)
Implementation of RFC 5487, "Pre-Shared Key Cipher Suites for TLS with
SHA-256/384 and AES Galois Counter 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.java2
1 files changed, 1 insertions, 1 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 961669f7..7d8f48f9 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/TlsServerProtocol.java
@@ -136,7 +136,7 @@ public class TlsServerProtocol
// TODO This block could really be done before actually sending the hello
{
- securityParameters.prfAlgorithm = getPRFAlgorithm(selectedCipherSuite);
+ securityParameters.prfAlgorithm = getPRFAlgorithm(getContext(), selectedCipherSuite);
securityParameters.compressionAlgorithm = this.selectedCompressionMethod;
/*