diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-06-09 20:07:01 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-06-09 20:07:01 +0700 |
commit | 60fbca299669c59edea32f393c0991e8a90df10f (patch) | |
tree | a0a20f7ed83b071035edac19252f2b85261eb6e1 | |
parent | Add PKCS OIDs for SHA512-224/256 sigs (diff) | |
download | BouncyCastle.NET-ed25519-60fbca299669c59edea32f393c0991e8a90df10f.tar.xz |
Update xmldoc
-rw-r--r-- | crypto/src/asn1/Asn1Object.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/crypto/src/asn1/Asn1Object.cs b/crypto/src/asn1/Asn1Object.cs index a86fdbb4a..4faa81ac8 100644 --- a/crypto/src/asn1/Asn1Object.cs +++ b/crypto/src/asn1/Asn1Object.cs @@ -6,11 +6,13 @@ namespace Org.BouncyCastle.Asn1 public abstract class Asn1Object : Asn1Encodable { - /// <summary>Create a base ASN.1 object from a byte array.</summary> - /// <param name="data">The byte array to parse.</param> - /// <returns>The base ASN.1 object represented by the byte array.</returns> - /// <exception cref="IOException">If there is a problem parsing the data.</exception> - public static Asn1Object FromByteArray( + /// <summary>Create a base ASN.1 object from a byte array.</summary> + /// <param name="data">The byte array to parse.</param> + /// <returns>The base ASN.1 object represented by the byte array.</returns> + /// <exception cref="IOException"> + /// If there is a problem parsing the data, or parsing an object did not exhaust the available data. + /// </exception> + public static Asn1Object FromByteArray( byte[] data) { try |