summary refs log tree commit diff
path: root/crypto/src/util
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-07-06 20:12:01 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-07-06 20:12:01 +0700
commitd5dbff576ad27f166e4777f9383694ecd7babf0e (patch)
treef692e009c57ae7942b1f550d75fd1587352689ef /crypto/src/util
parentFix namespace of sike code (diff)
downloadBouncyCastle.NET-ed25519-d5dbff576ad27f166e4777f9383694ecd7babf0e.tar.xz
Fix a few warnings
Diffstat (limited to 'crypto/src/util')
-rw-r--r--crypto/src/util/IEncodable.cs16
1 files changed, 4 insertions, 12 deletions
diff --git a/crypto/src/util/IEncodable.cs b/crypto/src/util/IEncodable.cs
index 29d5af7f8..426394f35 100644
--- a/crypto/src/util/IEncodable.cs
+++ b/crypto/src/util/IEncodable.cs
@@ -4,17 +4,9 @@ namespace Org.BouncyCastle.Utilities
 {
     public interface IEncodable
     {
-        ///<summary>
-        ///
-        ///
-        ///
-        ///
-        /// 
-         // * Return a byte array representing the implementing object.
-         // *
-         // * @return a byte array representing the encoding.
-         // * @throws IOException if an issue arises generation the encoding.
-         // */
+        /// <summary>Return a byte array representing the implementing object.</summary>
+        /// <returns>An encoding of this object as a byte array.</returns>
+        /// <exception cref="IOException"/>
         byte[] GetEncoded();
     }
-}
\ No newline at end of file
+}