summary refs log tree commit diff
path: root/crypto/src/tls/DigestInputBuffer.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-03-17 01:36:02 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-03-17 01:36:02 +0700
commitf9f4d1a20f8658b9145662f16b0b18c69f673837 (patch)
tree1863dfcca423a39237b8025001d864e5051a1c18 /crypto/src/tls/DigestInputBuffer.cs
parentFix return type (diff)
downloadBouncyCastle.NET-ed25519-f9f4d1a20f8658b9145662f16b0b18c69f673837.tar.xz
Refactoring
Diffstat (limited to 'crypto/src/tls/DigestInputBuffer.cs')
-rw-r--r--crypto/src/tls/DigestInputBuffer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/tls/DigestInputBuffer.cs b/crypto/src/tls/DigestInputBuffer.cs
index 7dd525f88..9b4ea4b06 100644
--- a/crypto/src/tls/DigestInputBuffer.cs
+++ b/crypto/src/tls/DigestInputBuffer.cs
@@ -15,7 +15,7 @@ namespace Org.BouncyCastle.Tls
         }
 
         /// <exception cref="IOException"/>
-        internal void CopyTo(Stream output)
+        internal void CopyInputTo(Stream output)
         {
             // TODO[tls-port]
             // NOTE: Copy data since the output here may be under control of external code.