diff options
Diffstat (limited to 'crypto/src/asn1/crmf/AuthenticatorControl.cs')
-rw-r--r-- | crypto/src/asn1/crmf/AuthenticatorControl.cs | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/crypto/src/asn1/crmf/AuthenticatorControl.cs b/crypto/src/asn1/crmf/AuthenticatorControl.cs deleted file mode 100644 index 060088b1f..000000000 --- a/crypto/src/asn1/crmf/AuthenticatorControl.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace Org.BouncyCastle.Asn1.Crmf -{ - public class AuthenticatorControl:IControl - { - - private static readonly DerObjectIdentifier type = CrmfObjectIdentifiers.id_regCtrl_authenticator; - - private readonly DerUtf8String token; - - public AuthenticatorControl(DerUtf8String token) - { - this.token = token; - } - - public AuthenticatorControl(String token) - { - this.token = new DerUtf8String(token); - } - - public DerObjectIdentifier Type - { - get { return type; } - } - - public Asn1Encodable Value { - get { return token; } - } - } -} |