You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.6 KiB
57 lines
1.6 KiB
8 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.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; }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|