diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-09 01:13:27 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-09 01:13:27 +0700 |
commit | a8a17fd70fc8df3ca7402323ad5c4f36b25cb806 (patch) | |
tree | 9b276b62885505abbb899d17744b65b912072140 /crypto/src/tls | |
parent | Primes improvements (diff) | |
download | BouncyCastle.NET-ed25519-a8a17fd70fc8df3ca7402323ad5c4f36b25cb806.tar.xz |
Dispose cleanup
- IDisposable for PemReader, PemWriter, IStreamGenerator
Diffstat (limited to 'crypto/src/tls')
-rw-r--r-- | crypto/src/tls/CertificateUrl.cs | 2 | ||||
-rw-r--r-- | crypto/src/tls/HandshakeMessageOutput.cs | 2 | ||||
-rw-r--r-- | crypto/src/tls/RecordStream.cs | 4 | ||||
-rw-r--r-- | crypto/src/tls/TlsUtilities.cs | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/crypto/src/tls/CertificateUrl.cs b/crypto/src/tls/CertificateUrl.cs index 822745e4e..46f8659f8 100644 --- a/crypto/src/tls/CertificateUrl.cs +++ b/crypto/src/tls/CertificateUrl.cs @@ -109,7 +109,7 @@ namespace Org.BouncyCastle.Tls WriteTo(output); - Platform.Dispose(this); + Dispose(); } } } diff --git a/crypto/src/tls/HandshakeMessageOutput.cs b/crypto/src/tls/HandshakeMessageOutput.cs index 0d8f15018..af0545e9f 100644 --- a/crypto/src/tls/HandshakeMessageOutput.cs +++ b/crypto/src/tls/HandshakeMessageOutput.cs @@ -84,7 +84,7 @@ namespace Org.BouncyCastle.Tls clientProtocol.WriteHandshakeMessage(buf, 0, count); - Platform.Dispose(this); + Dispose(); } } } diff --git a/crypto/src/tls/RecordStream.cs b/crypto/src/tls/RecordStream.cs index a5926d05b..8dc2a30ce 100644 --- a/crypto/src/tls/RecordStream.cs +++ b/crypto/src/tls/RecordStream.cs @@ -359,7 +359,7 @@ namespace Org.BouncyCastle.Tls IOException io = null; try { - Platform.Dispose(m_input); + m_input.Dispose(); } catch (IOException e) { @@ -368,7 +368,7 @@ namespace Org.BouncyCastle.Tls try { - Platform.Dispose(m_output); + m_output.Dispose(); } catch (IOException e) { diff --git a/crypto/src/tls/TlsUtilities.cs b/crypto/src/tls/TlsUtilities.cs index 463928ba6..e1a8ead58 100644 --- a/crypto/src/tls/TlsUtilities.cs +++ b/crypto/src/tls/TlsUtilities.cs @@ -2158,7 +2158,7 @@ namespace Org.BouncyCastle.Tls buf.CopyInputTo(output); - Platform.Dispose(output); + output.Dispose(); } internal static DigitallySigned GenerateCertificateVerifyClient(TlsClientContext clientContext, |