diff options
Diffstat (limited to 'crypto/src/tls/SecurityParameters.cs')
-rw-r--r-- | crypto/src/tls/SecurityParameters.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto/src/tls/SecurityParameters.cs b/crypto/src/tls/SecurityParameters.cs index a04c0af8c..1f63f6f33 100644 --- a/crypto/src/tls/SecurityParameters.cs +++ b/crypto/src/tls/SecurityParameters.cs @@ -13,7 +13,6 @@ namespace Org.BouncyCastle.Tls internal short m_maxFragmentLength = -1; internal int m_prfAlgorithm = -1; internal int m_prfCryptoHashAlgorithm = -1; - internal short m_prfHashAlgorithm = -1; internal int m_prfHashLength = -1; internal int m_verifyDataLength = -1; internal TlsSecret m_baseKeyClient = null; @@ -244,11 +243,6 @@ namespace Org.BouncyCastle.Tls get { return m_prfCryptoHashAlgorithm; } } - public short PrfHashAlgorithm - { - get { return m_prfHashAlgorithm; } - } - public int PrfHashLength { get { return m_prfHashLength; } |