blob: 4a15db6cb69adf73cc193fe2e7ba69e328bbac83 (
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
|
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 readonly DerUtf8String m_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)
{
m_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)
{
m_token = new DerUtf8String(token);
}
/// <summary>
/// Return the type of this control.
/// </summary>
public DerObjectIdentifier Type => CrmfObjectIdentifiers.id_regCtrl_authenticator;
/// <summary>
/// Return the token associated with this control (a UTF8String).
/// </summary>
public Asn1Encodable Value => m_token;
}
}
|