summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2018-11-06 16:55:58 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2018-11-06 16:55:58 +0700
commitae809eddc05da059ff401787e17fb3e96cd4fe64 (patch)
tree8b38a1e0a42be0647205079c893c25b8621f2b24 /crypto/test
parentUpdate versions and release notes for 1.8.4 (diff)
downloadBouncyCastle.NET-ed25519-ae809eddc05da059ff401787e17fb3e96cd4fe64.tar.xz
TLS: Update to RFC 7627 from draft-ietf-tls-session-hash-04
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/crypto/tls/test/MockDtlsClient.cs1
-rw-r--r--crypto/test/src/crypto/tls/test/MockTlsClient.cs1
2 files changed, 0 insertions, 2 deletions
diff --git a/crypto/test/src/crypto/tls/test/MockDtlsClient.cs b/crypto/test/src/crypto/tls/test/MockDtlsClient.cs
index 8d76c97b2..51493fae1 100644
--- a/crypto/test/src/crypto/tls/test/MockDtlsClient.cs
+++ b/crypto/test/src/crypto/tls/test/MockDtlsClient.cs
@@ -68,7 +68,6 @@ namespace Org.BouncyCastle.Crypto.Tls.Tests
         {
             IDictionary clientExtensions = TlsExtensionsUtilities.EnsureExtensionsInitialised(base.GetClientExtensions());
             TlsExtensionsUtilities.AddEncryptThenMacExtension(clientExtensions);
-            TlsExtensionsUtilities.AddExtendedMasterSecretExtension(clientExtensions);
             {
                 /*
                  * NOTE: If you are copying test code, do not blindly set these extensions in your own client.
diff --git a/crypto/test/src/crypto/tls/test/MockTlsClient.cs b/crypto/test/src/crypto/tls/test/MockTlsClient.cs
index d8deabf96..f28236f0b 100644
--- a/crypto/test/src/crypto/tls/test/MockTlsClient.cs
+++ b/crypto/test/src/crypto/tls/test/MockTlsClient.cs
@@ -58,7 +58,6 @@ namespace Org.BouncyCastle.Crypto.Tls.Tests
         {
             IDictionary clientExtensions = TlsExtensionsUtilities.EnsureExtensionsInitialised(base.GetClientExtensions());
             TlsExtensionsUtilities.AddEncryptThenMacExtension(clientExtensions);
-            TlsExtensionsUtilities.AddExtendedMasterSecretExtension(clientExtensions);
             {
                 /*
                  * NOTE: If you are copying test code, do not blindly set these extensions in your own client.