diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-03-17 01:36:02 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-03-17 01:36:02 +0700 |
commit | f9f4d1a20f8658b9145662f16b0b18c69f673837 (patch) | |
tree | 1863dfcca423a39237b8025001d864e5051a1c18 /crypto/src/tls/TlsUtilities.cs | |
parent | Fix return type (diff) | |
download | BouncyCastle.NET-ed25519-f9f4d1a20f8658b9145662f16b0b18c69f673837.tar.xz |
Refactoring
Diffstat (limited to '')
-rw-r--r-- | crypto/src/tls/TlsUtilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/TlsUtilities.cs b/crypto/src/tls/TlsUtilities.cs index f48c7e731..1d9759bca 100644 --- a/crypto/src/tls/TlsUtilities.cs +++ b/crypto/src/tls/TlsUtilities.cs @@ -2118,7 +2118,7 @@ namespace Org.BouncyCastle.Tls output.Write(extraSignatureInput, 0, extraSignatureInput.Length); } - buf.CopyTo(output); + buf.CopyInputTo(output); Platform.Dispose(output); } |