diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-06 20:12:01 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-06 20:12:01 +0700 |
commit | d5dbff576ad27f166e4777f9383694ecd7babf0e (patch) | |
tree | f692e009c57ae7942b1f550d75fd1587352689ef /crypto/src/util | |
parent | Fix namespace of sike code (diff) | |
download | BouncyCastle.NET-ed25519-d5dbff576ad27f166e4777f9383694ecd7babf0e.tar.xz |
Fix a few warnings
Diffstat (limited to 'crypto/src/util')
-rw-r--r-- | crypto/src/util/IEncodable.cs | 16 |
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 +} |