Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Jahoda <jajahoda@microsoft.com>2021-07-13 20:45:59 +0300
committerGitHub <noreply@github.com>2021-07-13 20:45:59 +0300
commit2c275e87c0033da3830bae29059d9ee5b663cf58 (patch)
tree876023ee1ae446d816382e2eb63ab5e6ffae199f /src/libraries/System.Net.Security/tests/UnitTests
parenta490a3417adb78dbc36891624e67720ebdca919f (diff)
Delayed client certificate (#54692)
* initial prototype * Restore TLS 1.2 renegotiation * First windows functionality merge * reenable client certificate * Add more renegotiate tests * Remove client certificates * Cleanup * add test log * Apply PR comments * Add Data frame test * Add drain buffer test * Fix tls 1.3 incomming app data frame * Restore verify callback * Remove debug log * Remove keylog callback and unused method * Fix test build * Attempt to fix openssl version api difference * Sort shim * fix build * CI log * Restore mac tests * Add logs * fix test runs on old openssl * fix tests * fix w7 condition * feedback from review Co-authored-by: wfurt <tweinfurt@yahoo.com>
Diffstat (limited to 'src/libraries/System.Net.Security/tests/UnitTests')
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
index 4e146153626..ee160631b40 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/Fakes/FakeSslStream.Implementation.cs
@@ -59,7 +59,7 @@ namespace System.Net.Security
return Task.Run(() => {});
}
- private Task RenegotiateAsync(CancellationToken cancellationToken) => throw new PlatformNotSupportedException();
+ private Task RenegotiateAsync(AsyncReadWriteAdapter adapter) => throw new PlatformNotSupportedException();
private void ReturnReadBufferIfEmpty()
{