diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-12 14:26:13 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-12 14:26:13 +0700 |
commit | 49f328f2506bb887d2bd106face04bc8ee95ce6d (patch) | |
tree | 95abb7e5099db6698fcc33514230f4aff992ece2 /crypto/src/tls/TlsClient.cs | |
parent | Picnic performance (diff) | |
download | BouncyCastle.NET-ed25519-49f328f2506bb887d2bd106face04bc8ee95ce6d.tar.xz |
Cleanup doc warnings
Diffstat (limited to 'crypto/src/tls/TlsClient.cs')
-rw-r--r-- | crypto/src/tls/TlsClient.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/src/tls/TlsClient.cs b/crypto/src/tls/TlsClient.cs index 368161c32..d93799aaf 100644 --- a/crypto/src/tls/TlsClient.cs +++ b/crypto/src/tls/TlsClient.cs @@ -20,7 +20,7 @@ namespace Org.BouncyCastle.Tls /// <summary>Return the <see cref="TlsPskExternal">external PSKs</see> to offer in the ClientHello.</summary> /// <remarks>This will only be called when TLS 1.3 or higher is amongst the offered protocol versions.</remarks> - /// <returns>an <see cref="IList"/> of <see cref="TlsPskExternal"/> instances, or null if none should be + /// <returns>an <see cref="IList{T}"/> of <see cref="TlsPskExternal"/> instances, or null if none should be /// offered.</returns> IList<TlsPskExternal> GetExternalPsks(); @@ -36,7 +36,8 @@ namespace Org.BouncyCastle.Tls /// Groups that were not included in the supported_groups extension (by <see cref="GetClientExtensions"/> will /// be ignored. The protocol will then add a suitable key_share extension to the ClientHello extensions. /// </remarks> - /// <returns>an <see cref="IList"/> of <see cref="NamedGroup">named group</see> values, possibly empty or null. + /// <returns>an <see cref="IList{T}"/> of <see cref="NamedGroup">named group</see> values, possibly empty or + /// null. /// </returns> IList<int> GetEarlyKeyShareGroups(); |