From dc5029c8650432ae04df78d2ead06a8349176b74 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Tue, 28 Jun 2022 20:49:58 +0700 Subject: Generics migration in Tls --- crypto/src/tls/SecurityParameters.cs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'crypto/src/tls/SecurityParameters.cs') diff --git a/crypto/src/tls/SecurityParameters.cs b/crypto/src/tls/SecurityParameters.cs index 548e4a4ca..0681401eb 100644 --- a/crypto/src/tls/SecurityParameters.cs +++ b/crypto/src/tls/SecurityParameters.cs @@ -1,5 +1,5 @@ using System; -using System.Collections; +using System.Collections.Generic; using Org.BouncyCastle.Tls.Crypto; @@ -39,12 +39,12 @@ namespace Org.BouncyCastle.Tls internal ProtocolName m_applicationProtocol = null; internal bool m_applicationProtocolSet = false; internal short[] m_clientCertTypes = null; - internal IList m_clientServerNames = null; - internal IList m_clientSigAlgs = null; - internal IList m_clientSigAlgsCert = null; + internal IList m_clientServerNames = null; + internal IList m_clientSigAlgs = null; + internal IList m_clientSigAlgsCert = null; internal int[] m_clientSupportedGroups = null; - internal IList m_serverSigAlgs = null; - internal IList m_serverSigAlgsCert = null; + internal IList m_serverSigAlgs = null; + internal IList m_serverSigAlgsCert = null; internal int[] m_serverSupportedGroups = null; internal int m_keyExchangeAlgorithm = -1; internal Certificate m_localCertificate = null; @@ -109,17 +109,17 @@ namespace Org.BouncyCastle.Tls get { return m_clientRandom; } } - public IList ClientServerNames + public IList ClientServerNames { get { return m_clientServerNames; } } - public IList ClientSigAlgs + public IList ClientSigAlgs { get { return m_clientSigAlgs; } } - public IList ClientSigAlgsCert + public IList ClientSigAlgsCert { get { return m_clientSigAlgsCert; } } @@ -249,12 +249,12 @@ namespace Org.BouncyCastle.Tls get { return m_serverRandom; } } - public IList ServerSigAlgs + public IList ServerSigAlgs { get { return m_serverSigAlgs; } } - public IList ServerSigAlgsCert + public IList ServerSigAlgsCert { get { return m_serverSigAlgsCert; } } -- cgit 1.4.1