diff options
author | Megan Woods <megan@flygfisk.com> | 2019-01-15 14:55:39 +1100 |
---|---|---|
committer | Megan Woods <megan@flygfisk.com> | 2019-01-15 14:55:39 +1100 |
commit | 6614f7fda643ebb09a1c21979a067fab17c3ab6c (patch) | |
tree | fffaf374910dd8eb533fe23139d896fe8d42fbdd /crypto/src/crmf/AuthenticatorControl.cs | |
parent | first cut on Pkcs8 (diff) | |
download | BouncyCastle.NET-ed25519-6614f7fda643ebb09a1c21979a067fab17c3ab6c.tar.xz |
Updated C# doc.
Removed EJBCA EnrollmentTest as it s not viable to produce an example on .Net Framework 2.0
Diffstat (limited to 'crypto/src/crmf/AuthenticatorControl.cs')
-rw-r--r-- | crypto/src/crmf/AuthenticatorControl.cs | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/crypto/src/crmf/AuthenticatorControl.cs b/crypto/src/crmf/AuthenticatorControl.cs index 7803c4418..976135ed8 100644 --- a/crypto/src/crmf/AuthenticatorControl.cs +++ b/crypto/src/crmf/AuthenticatorControl.cs @@ -1,12 +1,12 @@ using System; -using System.Collections.Generic; -using System.Text; - using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Asn1.Crmf; namespace Org.BouncyCastle.Crmf { + /// <summary> + /// Carrier for an authenticator control. + /// </summary> public class AuthenticatorControl:IControl { @@ -14,21 +14,35 @@ namespace Org.BouncyCastle.Crmf private readonly DerUtf8String token; + /// <summary> + /// Basic constructor - build from a UTF-8 string representing the token. + /// </summary> + /// <param name="token">UTF-8 string representing the token.</param> public AuthenticatorControl(DerUtf8String token) { this.token = token; } + /// <summary> + /// Basic constructor - build from a string representing the token. + /// </summary> + /// <param name="token">string representing the token.</param> public AuthenticatorControl(String token) { this.token = new DerUtf8String(token); } + /// <summary> + /// Return the type of this control. + /// </summary> public DerObjectIdentifier Type { get { return type; } } + /// <summary> + /// Return the token associated with this control (a UTF8String). + /// </summary> public Asn1Encodable Value { get { return token; } } |