blob: 976135ed8d5cdf6ae3b8f7a9bdc87124fb51b9fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
using System;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Crmf;
namespace Org.BouncyCastle.Crmf
{
/// <summary>
/// Carrier for an authenticator control.
/// </summary>
public class AuthenticatorControl:IControl
{
private static readonly DerObjectIdentifier type = CrmfObjectIdentifiers.id_regCtrl_authenticator;
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; }
}
}
}
|