diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-27 23:13:49 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-07-27 23:13:49 +0700 |
commit | 739bef8b6390a8b75f9a6f9909ee325da5e878cc (patch) | |
tree | 1c4b691cb53f97ad9f2d0b5b590eae9cf85d843b /crypto/src/tls/TlsClient.cs | |
parent | Seal handshake hash externally (diff) | |
download | BouncyCastle.NET-ed25519-739bef8b6390a8b75f9a6f9909ee325da5e878cc.tar.xz |
Filter PSK set for ClientHello retry
Diffstat (limited to 'crypto/src/tls/TlsClient.cs')
-rw-r--r-- | crypto/src/tls/TlsClient.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsClient.cs b/crypto/src/tls/TlsClient.cs index a9356aa4b..ef4586574 100644 --- a/crypto/src/tls/TlsClient.cs +++ b/crypto/src/tls/TlsClient.cs @@ -61,6 +61,8 @@ namespace Org.BouncyCastle.Tls void NotifySelectedCipherSuite(int selectedCipherSuite); + void NotifySelectedPsk(TlsPsk selectedPsk); + /// <summary>The protocol implementation validates that any server extensions received correspond to client /// extensions sent.</summary> /// <remarks> |