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-19 16:52:32 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-06-19 16:52:32 +0400
commit86055ae8e8dedac6a0391090233aa26531d010cd (patch)
tree46437c254292afc6c912bd010203ac8ec0d71fb5 /core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java
parentee17e30b822c0f27717f5652e224e98f33ce67f5 (diff)
Add supported_signature_algorithms field to CertificateRequest for TLS
1.2
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java b/core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java
index 9c200ed5..ae56f8ae 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/TlsClientProtocol.java
@@ -412,7 +412,7 @@ public class TlsClientProtocol
this.failWithError(AlertLevel.fatal, AlertDescription.handshake_failure);
}
- this.certificateRequest = CertificateRequest.parse(buf);
+ this.certificateRequest = CertificateRequest.parse(getContext(), buf);
assertEmpty(buf);