summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorMegan Woods <megan@flygfisk.com>2019-01-15 14:57:44 +1100
committerMegan Woods <megan@flygfisk.com>2019-01-15 14:57:44 +1100
commit82a9f9936cf5fe53f142c419fae1cbb2d4dfb404 (patch)
tree831fbf05b1d99b2e530d9358859879c20a2274ee /crypto/src
parentUpdated C# doc. (diff)
downloadBouncyCastle.NET-ed25519-82a9f9936cf5fe53f142c419fae1cbb2d4dfb404.tar.xz
Missing from previous commit
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/crmf/IControl.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/crypto/src/crmf/IControl.cs b/crypto/src/crmf/IControl.cs

index 3601633a4..14fcc2cd3 100644 --- a/crypto/src/crmf/IControl.cs +++ b/crypto/src/crmf/IControl.cs
@@ -6,11 +6,19 @@ using Org.BouncyCastle.Utilities; namespace Org.BouncyCastle.Crmf { - + /// <summary> + /// Generic interface for a CertificateRequestMessage control value. + /// </summary> public interface IControl { + /// <summary> + /// Return the type of this control. + /// </summary> DerObjectIdentifier Type { get; } + /// <summary> + /// Return the value contained in this control object. + /// </summary> Asn1Encodable Value { get; } } }