Initial Commit
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
using System;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X500;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* Some other information of non-restrictive nature regarding the usage of this
|
||||
* certificate.
|
||||
*
|
||||
* <pre>
|
||||
* AdditionalInformationSyntax ::= DirectoryString (SIZE(1..2048))
|
||||
* </pre>
|
||||
*/
|
||||
public class AdditionalInformationSyntax
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly DirectoryString information;
|
||||
|
||||
public static AdditionalInformationSyntax GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is AdditionalInformationSyntax)
|
||||
{
|
||||
return (AdditionalInformationSyntax) obj;
|
||||
}
|
||||
|
||||
if (obj is IAsn1String)
|
||||
{
|
||||
return new AdditionalInformationSyntax(DirectoryString.GetInstance(obj));
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
private AdditionalInformationSyntax(
|
||||
DirectoryString information)
|
||||
{
|
||||
this.information = information;
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from a given details.
|
||||
*
|
||||
* @param information The describtion of the information.
|
||||
*/
|
||||
public AdditionalInformationSyntax(
|
||||
string information)
|
||||
{
|
||||
this.information = new DirectoryString(information);
|
||||
}
|
||||
|
||||
public virtual DirectoryString Information
|
||||
{
|
||||
get { return information; }
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* AdditionalInformationSyntax ::= DirectoryString (SIZE(1..2048))
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return information.ToAsn1Object();
|
||||
}
|
||||
}
|
||||
}
|
BIN
iTechSharp/srcbc/asn1/isismtt/x509/AdmissionSyntax.cs
Normal file
BIN
iTechSharp/srcbc/asn1/isismtt/x509/AdmissionSyntax.cs
Normal file
Binary file not shown.
186
iTechSharp/srcbc/asn1/isismtt/x509/Admissions.cs
Normal file
186
iTechSharp/srcbc/asn1/isismtt/x509/Admissions.cs
Normal file
@@ -0,0 +1,186 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X509;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* An Admissions structure.
|
||||
* <p/>
|
||||
* <pre>
|
||||
* Admissions ::= SEQUENCE
|
||||
* {
|
||||
* admissionAuthority [0] EXPLICIT GeneralName OPTIONAL
|
||||
* namingAuthority [1] EXPLICIT NamingAuthority OPTIONAL
|
||||
* professionInfos SEQUENCE OF ProfessionInfo
|
||||
* }
|
||||
* <p/>
|
||||
* </pre>
|
||||
*
|
||||
* @see Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax
|
||||
* @see Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo
|
||||
* @see Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority
|
||||
*/
|
||||
public class Admissions
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly GeneralName admissionAuthority;
|
||||
private readonly NamingAuthority namingAuthority;
|
||||
private readonly Asn1Sequence professionInfos;
|
||||
|
||||
public static Admissions GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is Admissions)
|
||||
{
|
||||
return (Admissions) obj;
|
||||
}
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
{
|
||||
return new Admissions((Asn1Sequence) obj);
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from Asn1Sequence.
|
||||
* <p/>
|
||||
* The sequence is of type ProcurationSyntax:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* Admissions ::= SEQUENCE
|
||||
* {
|
||||
* admissionAuthority [0] EXPLICIT GeneralName OPTIONAL
|
||||
* namingAuthority [1] EXPLICIT NamingAuthority OPTIONAL
|
||||
* professionInfos SEQUENCE OF ProfessionInfo
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @param seq The ASN.1 sequence.
|
||||
*/
|
||||
private Admissions(
|
||||
Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count > 3)
|
||||
throw new ArgumentException("Bad sequence size: " + seq.Count);
|
||||
|
||||
IEnumerator e = seq.GetEnumerator();
|
||||
|
||||
e.MoveNext();
|
||||
Asn1Encodable o = (Asn1Encodable) e.Current;
|
||||
if (o is Asn1TaggedObject)
|
||||
{
|
||||
switch (((Asn1TaggedObject)o).TagNo)
|
||||
{
|
||||
case 0:
|
||||
admissionAuthority = GeneralName.GetInstance((Asn1TaggedObject)o, true);
|
||||
break;
|
||||
case 1:
|
||||
namingAuthority = NamingAuthority.GetInstance((Asn1TaggedObject)o, true);
|
||||
break;
|
||||
default:
|
||||
throw new ArgumentException("Bad tag number: " + ((Asn1TaggedObject)o).TagNo);
|
||||
}
|
||||
e.MoveNext();
|
||||
o = (Asn1Encodable) e.Current;
|
||||
}
|
||||
if (o is Asn1TaggedObject)
|
||||
{
|
||||
switch (((Asn1TaggedObject)o).TagNo)
|
||||
{
|
||||
case 1:
|
||||
namingAuthority = NamingAuthority.GetInstance((Asn1TaggedObject)o, true);
|
||||
break;
|
||||
default:
|
||||
throw new ArgumentException("Bad tag number: " + ((Asn1TaggedObject)o).TagNo);
|
||||
}
|
||||
e.MoveNext();
|
||||
o = (Asn1Encodable) e.Current;
|
||||
}
|
||||
professionInfos = Asn1Sequence.GetInstance(o);
|
||||
if (e.MoveNext())
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + e.Current.GetType().Name);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from a given details.
|
||||
* <p/>
|
||||
* Parameter <code>professionInfos</code> is mandatory.
|
||||
*
|
||||
* @param admissionAuthority The admission authority.
|
||||
* @param namingAuthority The naming authority.
|
||||
* @param professionInfos The profession infos.
|
||||
*/
|
||||
public Admissions(
|
||||
GeneralName admissionAuthority,
|
||||
NamingAuthority namingAuthority,
|
||||
ProfessionInfo[] professionInfos)
|
||||
{
|
||||
this.admissionAuthority = admissionAuthority;
|
||||
this.namingAuthority = namingAuthority;
|
||||
this.professionInfos = new DerSequence(professionInfos);
|
||||
}
|
||||
|
||||
public virtual GeneralName AdmissionAuthority
|
||||
{
|
||||
get { return admissionAuthority; }
|
||||
}
|
||||
|
||||
public virtual NamingAuthority NamingAuthority
|
||||
{
|
||||
get { return namingAuthority; }
|
||||
}
|
||||
|
||||
public ProfessionInfo[] GetProfessionInfos()
|
||||
{
|
||||
ProfessionInfo[] infos = new ProfessionInfo[professionInfos.Count];
|
||||
int count = 0;
|
||||
foreach (Asn1Encodable ae in professionInfos)
|
||||
{
|
||||
infos[count++] = ProfessionInfo.GetInstance(ae);
|
||||
}
|
||||
return infos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* Admissions ::= SEQUENCE
|
||||
* {
|
||||
* admissionAuthority [0] EXPLICIT GeneralName OPTIONAL
|
||||
* namingAuthority [1] EXPLICIT NamingAuthority OPTIONAL
|
||||
* professionInfos SEQUENCE OF ProfessionInfo
|
||||
* }
|
||||
* <p/>
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector vec = new Asn1EncodableVector();
|
||||
|
||||
if (admissionAuthority != null)
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 0, admissionAuthority));
|
||||
}
|
||||
|
||||
if (namingAuthority != null)
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 1, namingAuthority));
|
||||
}
|
||||
|
||||
vec.Add(professionInfos);
|
||||
|
||||
return new DerSequence(vec);
|
||||
}
|
||||
}
|
||||
}
|
171
iTechSharp/srcbc/asn1/isismtt/x509/DeclarationOfMajority.cs
Normal file
171
iTechSharp/srcbc/asn1/isismtt/x509/DeclarationOfMajority.cs
Normal file
@@ -0,0 +1,171 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* A declaration of majority.
|
||||
* <p/>
|
||||
* <pre>
|
||||
* DeclarationOfMajoritySyntax ::= CHOICE
|
||||
* {
|
||||
* notYoungerThan [0] IMPLICIT INTEGER,
|
||||
* fullAgeAtCountry [1] IMPLICIT SEQUENCE
|
||||
* {
|
||||
* fullAge BOOLEAN DEFAULT TRUE,
|
||||
* country PrintableString (SIZE(2))
|
||||
* }
|
||||
* dateOfBirth [2] IMPLICIT GeneralizedTime
|
||||
* }
|
||||
* </pre>
|
||||
* <p/>
|
||||
* fullAgeAtCountry indicates the majority of the owner with respect to the laws
|
||||
* of a specific country.
|
||||
*/
|
||||
public class DeclarationOfMajority
|
||||
: Asn1Encodable
|
||||
//, ASN1Choice
|
||||
{
|
||||
public enum Choice
|
||||
{
|
||||
NotYoungerThan = 0,
|
||||
FullAgeAtCountry = 1,
|
||||
DateOfBirth = 2
|
||||
};
|
||||
|
||||
private readonly Asn1TaggedObject declaration;
|
||||
|
||||
public DeclarationOfMajority(
|
||||
int notYoungerThan)
|
||||
{
|
||||
declaration = new DerTaggedObject(false, 0, new DerInteger(notYoungerThan));
|
||||
}
|
||||
|
||||
public DeclarationOfMajority(
|
||||
bool fullAge,
|
||||
string country)
|
||||
{
|
||||
if (country.Length > 2)
|
||||
throw new ArgumentException("country can only be 2 characters");
|
||||
|
||||
DerPrintableString countryString = new DerPrintableString(country, true);
|
||||
|
||||
DerSequence seq;
|
||||
if (fullAge)
|
||||
{
|
||||
seq = new DerSequence(countryString);
|
||||
}
|
||||
else
|
||||
{
|
||||
seq = new DerSequence(DerBoolean.False, countryString);
|
||||
}
|
||||
|
||||
this.declaration = new DerTaggedObject(false, 1, seq);
|
||||
}
|
||||
|
||||
public DeclarationOfMajority(
|
||||
DerGeneralizedTime dateOfBirth)
|
||||
{
|
||||
this.declaration = new DerTaggedObject(false, 2, dateOfBirth);
|
||||
}
|
||||
|
||||
public static DeclarationOfMajority GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is DeclarationOfMajority)
|
||||
{
|
||||
return (DeclarationOfMajority) obj;
|
||||
}
|
||||
|
||||
if (obj is Asn1TaggedObject)
|
||||
{
|
||||
return new DeclarationOfMajority((Asn1TaggedObject) obj);
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
private DeclarationOfMajority(
|
||||
Asn1TaggedObject o)
|
||||
{
|
||||
if (o.TagNo > 2)
|
||||
throw new ArgumentException("Bad tag number: " + o.TagNo);
|
||||
|
||||
this.declaration = o;
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* DeclarationOfMajoritySyntax ::= CHOICE
|
||||
* {
|
||||
* notYoungerThan [0] IMPLICIT INTEGER,
|
||||
* fullAgeAtCountry [1] IMPLICIT SEQUENCE
|
||||
* {
|
||||
* fullAge BOOLEAN DEFAULT TRUE,
|
||||
* country PrintableString (SIZE(2))
|
||||
* }
|
||||
* dateOfBirth [2] IMPLICIT GeneralizedTime
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return declaration;
|
||||
}
|
||||
|
||||
public Choice Type
|
||||
{
|
||||
get { return (Choice) declaration.TagNo; }
|
||||
}
|
||||
|
||||
/**
|
||||
* @return notYoungerThan if that's what we are, -1 otherwise
|
||||
*/
|
||||
public virtual int NotYoungerThan
|
||||
{
|
||||
get
|
||||
{
|
||||
switch ((Choice) declaration.TagNo)
|
||||
{
|
||||
case Choice.NotYoungerThan:
|
||||
return DerInteger.GetInstance(declaration, false).Value.IntValue;
|
||||
default:
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public virtual Asn1Sequence FullAgeAtCountry
|
||||
{
|
||||
get
|
||||
{
|
||||
switch ((Choice) declaration.TagNo)
|
||||
{
|
||||
case Choice.FullAgeAtCountry:
|
||||
return Asn1Sequence.GetInstance(declaration, false);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public virtual DerGeneralizedTime DateOfBirth
|
||||
{
|
||||
get
|
||||
{
|
||||
switch ((Choice) declaration.TagNo)
|
||||
{
|
||||
case Choice.DateOfBirth:
|
||||
return DerGeneralizedTime.GetInstance(declaration, false);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
122
iTechSharp/srcbc/asn1/isismtt/x509/MonetaryLimit.cs
Normal file
122
iTechSharp/srcbc/asn1/isismtt/x509/MonetaryLimit.cs
Normal file
@@ -0,0 +1,122 @@
|
||||
using System;
|
||||
|
||||
using Org.BouncyCastle.Math;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* Monetary limit for transactions. The QcEuMonetaryLimit QC statement MUST be
|
||||
* used in new certificates in place of the extension/attribute MonetaryLimit
|
||||
* since January 1, 2004. For the sake of backward compatibility with
|
||||
* certificates already in use, components SHOULD support MonetaryLimit (as well
|
||||
* as QcEuLimitValue).
|
||||
* <p/>
|
||||
* Indicates a monetary limit within which the certificate holder is authorized
|
||||
* to act. (This value DOES NOT express a limit on the liability of the
|
||||
* certification authority).
|
||||
* <p/>
|
||||
* <pre>
|
||||
* MonetaryLimitSyntax ::= SEQUENCE
|
||||
* {
|
||||
* currency PrintableString (SIZE(3)),
|
||||
* amount INTEGER,
|
||||
* exponent INTEGER
|
||||
* }
|
||||
* </pre>
|
||||
* <p/>
|
||||
* currency must be the ISO code.
|
||||
* <p/>
|
||||
* value = amount<6E>10*exponent
|
||||
*/
|
||||
public class MonetaryLimit
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly DerPrintableString currency;
|
||||
private readonly DerInteger amount;
|
||||
private readonly DerInteger exponent;
|
||||
|
||||
public static MonetaryLimit GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is MonetaryLimit)
|
||||
{
|
||||
return (MonetaryLimit) obj;
|
||||
}
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
{
|
||||
return new MonetaryLimit(Asn1Sequence.GetInstance(obj));
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
private MonetaryLimit(
|
||||
Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count != 3)
|
||||
throw new ArgumentException("Bad sequence size: " + seq.Count);
|
||||
|
||||
currency = DerPrintableString.GetInstance(seq[0]);
|
||||
amount = DerInteger.GetInstance(seq[1]);
|
||||
exponent = DerInteger.GetInstance(seq[2]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from a given details.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* value = amount<6E>10^exponent
|
||||
*
|
||||
* @param currency The currency. Must be the ISO code.
|
||||
* @param amount The amount
|
||||
* @param exponent The exponent
|
||||
*/
|
||||
public MonetaryLimit(
|
||||
string currency,
|
||||
int amount,
|
||||
int exponent)
|
||||
{
|
||||
this.currency = new DerPrintableString(currency, true);
|
||||
this.amount = new DerInteger(amount);
|
||||
this.exponent = new DerInteger(exponent);
|
||||
}
|
||||
|
||||
public virtual string Currency
|
||||
{
|
||||
get { return currency.GetString(); }
|
||||
}
|
||||
|
||||
public virtual BigInteger Amount
|
||||
{
|
||||
get { return amount.Value; }
|
||||
}
|
||||
|
||||
public virtual BigInteger Exponent
|
||||
{
|
||||
get { return exponent.Value; }
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* MonetaryLimitSyntax ::= SEQUENCE
|
||||
* {
|
||||
* currency PrintableString (SIZE(3)),
|
||||
* amount INTEGER,
|
||||
* exponent INTEGER
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return new DerSequence(currency, amount, exponent);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
214
iTechSharp/srcbc/asn1/isismtt/x509/NamingAuthority.cs
Normal file
214
iTechSharp/srcbc/asn1/isismtt/x509/NamingAuthority.cs
Normal file
@@ -0,0 +1,214 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X500;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* Names of authorities which are responsible for the administration of title
|
||||
* registers.
|
||||
*
|
||||
* <pre>
|
||||
* NamingAuthority ::= SEQUENCE
|
||||
* {
|
||||
* namingAuthorityID OBJECT IDENTIFIER OPTIONAL,
|
||||
* namingAuthorityUrl IA5String OPTIONAL,
|
||||
* namingAuthorityText DirectoryString(SIZE(1..128)) OPTIONAL
|
||||
* }
|
||||
* </pre>
|
||||
* @see Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax
|
||||
*
|
||||
*/
|
||||
public class NamingAuthority
|
||||
: Asn1Encodable
|
||||
{
|
||||
/**
|
||||
* Profession OIDs should always be defined under the OID branch of the
|
||||
* responsible naming authority. At the time of this writing, the work group
|
||||
* <20>Recht, Wirtschaft, Steuern<72> (<28>Law, Economy, Taxes<65>) is registered as the
|
||||
* first naming authority under the OID id-isismtt-at-namingAuthorities.
|
||||
*/
|
||||
public static readonly DerObjectIdentifier IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern
|
||||
= new DerObjectIdentifier(IsisMttObjectIdentifiers.IdIsisMttATNamingAuthorities + ".1");
|
||||
|
||||
private readonly DerObjectIdentifier namingAuthorityID;
|
||||
private readonly string namingAuthorityUrl;
|
||||
private readonly DirectoryString namingAuthorityText;
|
||||
|
||||
public static NamingAuthority GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is NamingAuthority)
|
||||
{
|
||||
return (NamingAuthority) obj;
|
||||
}
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
{
|
||||
return new NamingAuthority((Asn1Sequence) obj);
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
public static NamingAuthority GetInstance(
|
||||
Asn1TaggedObject obj,
|
||||
bool isExplicit)
|
||||
{
|
||||
return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit));
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from Asn1Sequence.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* <pre>
|
||||
* NamingAuthority ::= SEQUENCE
|
||||
* {
|
||||
* namingAuthorityID OBJECT IDENTIFIER OPTIONAL,
|
||||
* namingAuthorityUrl IA5String OPTIONAL,
|
||||
* namingAuthorityText DirectoryString(SIZE(1..128)) OPTIONAL
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @param seq The ASN.1 sequence.
|
||||
*/
|
||||
private NamingAuthority(
|
||||
Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count > 3)
|
||||
throw new ArgumentException("Bad sequence size: " + seq.Count);
|
||||
|
||||
IEnumerator e = seq.GetEnumerator();
|
||||
|
||||
if (e.MoveNext())
|
||||
{
|
||||
Asn1Encodable o = (Asn1Encodable) e.Current;
|
||||
if (o is DerObjectIdentifier)
|
||||
{
|
||||
namingAuthorityID = (DerObjectIdentifier) o;
|
||||
}
|
||||
else if (o is DerIA5String)
|
||||
{
|
||||
namingAuthorityUrl = DerIA5String.GetInstance(o).GetString();
|
||||
}
|
||||
else if (o is IAsn1String)
|
||||
{
|
||||
namingAuthorityText = DirectoryString.GetInstance(o);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + o.GetType().Name);
|
||||
}
|
||||
}
|
||||
|
||||
if (e.MoveNext())
|
||||
{
|
||||
Asn1Encodable o = (Asn1Encodable) e.Current;
|
||||
if (o is DerIA5String)
|
||||
{
|
||||
namingAuthorityUrl = DerIA5String.GetInstance(o).GetString();
|
||||
}
|
||||
else if (o is IAsn1String)
|
||||
{
|
||||
namingAuthorityText = DirectoryString.GetInstance(o);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + o.GetType().Name);
|
||||
}
|
||||
}
|
||||
|
||||
if (e.MoveNext())
|
||||
{
|
||||
Asn1Encodable o = (Asn1Encodable) e.Current;
|
||||
if (o is IAsn1String)
|
||||
{
|
||||
namingAuthorityText = DirectoryString.GetInstance(o);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + o.GetType().Name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the namingAuthorityID.
|
||||
*/
|
||||
public virtual DerObjectIdentifier NamingAuthorityID
|
||||
{
|
||||
get { return namingAuthorityID; }
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the namingAuthorityText.
|
||||
*/
|
||||
public virtual DirectoryString NamingAuthorityText
|
||||
{
|
||||
get { return namingAuthorityText; }
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the namingAuthorityUrl.
|
||||
*/
|
||||
public virtual string NamingAuthorityUrl
|
||||
{
|
||||
get { return namingAuthorityUrl; }
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from given details.
|
||||
* <p/>
|
||||
* All parameters can be combined.
|
||||
*
|
||||
* @param namingAuthorityID ObjectIdentifier for naming authority.
|
||||
* @param namingAuthorityUrl URL for naming authority.
|
||||
* @param namingAuthorityText Textual representation of naming authority.
|
||||
*/
|
||||
public NamingAuthority(
|
||||
DerObjectIdentifier namingAuthorityID,
|
||||
string namingAuthorityUrl,
|
||||
DirectoryString namingAuthorityText)
|
||||
{
|
||||
this.namingAuthorityID = namingAuthorityID;
|
||||
this.namingAuthorityUrl = namingAuthorityUrl;
|
||||
this.namingAuthorityText = namingAuthorityText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* NamingAuthority ::= SEQUENCE
|
||||
* {
|
||||
* namingAuthorityID OBJECT IDENTIFIER OPTIONAL,
|
||||
* namingAuthorityUrl IA5String OPTIONAL,
|
||||
* namingAuthorityText DirectoryString(SIZE(1..128)) OPTIONAL
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector vec = new Asn1EncodableVector();
|
||||
if (namingAuthorityID != null)
|
||||
{
|
||||
vec.Add(namingAuthorityID);
|
||||
}
|
||||
if (namingAuthorityUrl != null)
|
||||
{
|
||||
vec.Add(new DerIA5String(namingAuthorityUrl, true));
|
||||
}
|
||||
if (namingAuthorityText != null)
|
||||
{
|
||||
vec.Add(namingAuthorityText);
|
||||
}
|
||||
return new DerSequence(vec);
|
||||
}
|
||||
}
|
||||
}
|
232
iTechSharp/srcbc/asn1/isismtt/x509/ProcurationSyntax.cs
Normal file
232
iTechSharp/srcbc/asn1/isismtt/x509/ProcurationSyntax.cs
Normal file
@@ -0,0 +1,232 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X500;
|
||||
using Org.BouncyCastle.Asn1.X509;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* Attribute to indicate that the certificate holder may sign in the name of a
|
||||
* third person.
|
||||
* <p>
|
||||
* ISIS-MTT PROFILE: The corresponding ProcurationSyntax contains either the
|
||||
* name of the person who is represented (subcomponent thirdPerson) or a
|
||||
* reference to his/her base certificate (in the component signingFor,
|
||||
* subcomponent certRef), furthermore the optional components country and
|
||||
* typeSubstitution to indicate the country whose laws apply, and respectively
|
||||
* the type of procuration (e.g. manager, procuration, custody).
|
||||
* </p>
|
||||
* <p>
|
||||
* ISIS-MTT PROFILE: The GeneralName MUST be of type directoryName and MAY only
|
||||
* contain: - RFC3039 attributes, except pseudonym (countryName, commonName,
|
||||
* surname, givenName, serialNumber, organizationName, organizationalUnitName,
|
||||
* stateOrProvincename, localityName, postalAddress) and - SubjectDirectoryName
|
||||
* attributes (title, dateOfBirth, placeOfBirth, gender, countryOfCitizenship,
|
||||
* countryOfResidence and NameAtBirth).
|
||||
* </p>
|
||||
* <pre>
|
||||
* ProcurationSyntax ::= SEQUENCE {
|
||||
* country [1] EXPLICIT PrintableString(SIZE(2)) OPTIONAL,
|
||||
* typeOfSubstitution [2] EXPLICIT DirectoryString (SIZE(1..128)) OPTIONAL,
|
||||
* signingFor [3] EXPLICIT SigningFor
|
||||
* }
|
||||
*
|
||||
* SigningFor ::= CHOICE
|
||||
* {
|
||||
* thirdPerson GeneralName,
|
||||
* certRef IssuerSerial
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
public class ProcurationSyntax
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly string country;
|
||||
private readonly DirectoryString typeOfSubstitution;
|
||||
private readonly GeneralName thirdPerson;
|
||||
private readonly IssuerSerial certRef;
|
||||
|
||||
public static ProcurationSyntax GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is ProcurationSyntax)
|
||||
{
|
||||
return (ProcurationSyntax) obj;
|
||||
}
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
{
|
||||
return new ProcurationSyntax((Asn1Sequence) obj);
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from Asn1Sequence.
|
||||
* <p/>
|
||||
* The sequence is of type ProcurationSyntax:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* ProcurationSyntax ::= SEQUENCE {
|
||||
* country [1] EXPLICIT PrintableString(SIZE(2)) OPTIONAL,
|
||||
* typeOfSubstitution [2] EXPLICIT DirectoryString (SIZE(1..128)) OPTIONAL,
|
||||
* signingFor [3] EXPLICIT SigningFor
|
||||
* }
|
||||
* <p/>
|
||||
* SigningFor ::= CHOICE
|
||||
* {
|
||||
* thirdPerson GeneralName,
|
||||
* certRef IssuerSerial
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @param seq The ASN.1 sequence.
|
||||
*/
|
||||
private ProcurationSyntax(
|
||||
Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count < 1 || seq.Count > 3)
|
||||
throw new ArgumentException("Bad sequence size: " + seq.Count);
|
||||
|
||||
IEnumerator e = seq.GetEnumerator();
|
||||
|
||||
while (e.MoveNext())
|
||||
{
|
||||
Asn1TaggedObject o = Asn1TaggedObject.GetInstance(e.Current);
|
||||
switch (o.TagNo)
|
||||
{
|
||||
case 1:
|
||||
country = DerPrintableString.GetInstance(o, true).GetString();
|
||||
break;
|
||||
case 2:
|
||||
typeOfSubstitution = DirectoryString.GetInstance(o, true);
|
||||
break;
|
||||
case 3:
|
||||
Asn1Object signingFor = o.GetObject();
|
||||
if (signingFor is Asn1TaggedObject)
|
||||
{
|
||||
thirdPerson = GeneralName.GetInstance(signingFor);
|
||||
}
|
||||
else
|
||||
{
|
||||
certRef = IssuerSerial.GetInstance(signingFor);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new ArgumentException("Bad tag number: " + o.TagNo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from a given details.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* Either <code>generalName</code> or <code>certRef</code> MUST be
|
||||
* <code>null</code>.
|
||||
*
|
||||
* @param country The country code whose laws apply.
|
||||
* @param typeOfSubstitution The type of procuration.
|
||||
* @param certRef Reference to certificate of the person who is represented.
|
||||
*/
|
||||
public ProcurationSyntax(
|
||||
string country,
|
||||
DirectoryString typeOfSubstitution,
|
||||
IssuerSerial certRef)
|
||||
{
|
||||
this.country = country;
|
||||
this.typeOfSubstitution = typeOfSubstitution;
|
||||
this.thirdPerson = null;
|
||||
this.certRef = certRef;
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from a given details.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* Either <code>generalName</code> or <code>certRef</code> MUST be
|
||||
* <code>null</code>.
|
||||
*
|
||||
* @param country The country code whose laws apply.
|
||||
* @param typeOfSubstitution The type of procuration.
|
||||
* @param thirdPerson The GeneralName of the person who is represented.
|
||||
*/
|
||||
public ProcurationSyntax(
|
||||
string country,
|
||||
DirectoryString typeOfSubstitution,
|
||||
GeneralName thirdPerson)
|
||||
{
|
||||
this.country = country;
|
||||
this.typeOfSubstitution = typeOfSubstitution;
|
||||
this.thirdPerson = thirdPerson;
|
||||
this.certRef = null;
|
||||
}
|
||||
|
||||
public virtual string Country
|
||||
{
|
||||
get { return country; }
|
||||
}
|
||||
|
||||
public virtual DirectoryString TypeOfSubstitution
|
||||
{
|
||||
get { return typeOfSubstitution; }
|
||||
}
|
||||
|
||||
public virtual GeneralName ThirdPerson
|
||||
{
|
||||
get { return thirdPerson; }
|
||||
}
|
||||
|
||||
public virtual IssuerSerial CertRef
|
||||
{
|
||||
get { return certRef; }
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* ProcurationSyntax ::= SEQUENCE {
|
||||
* country [1] EXPLICIT PrintableString(SIZE(2)) OPTIONAL,
|
||||
* typeOfSubstitution [2] EXPLICIT DirectoryString (SIZE(1..128)) OPTIONAL,
|
||||
* signingFor [3] EXPLICIT SigningFor
|
||||
* }
|
||||
* <p/>
|
||||
* SigningFor ::= CHOICE
|
||||
* {
|
||||
* thirdPerson GeneralName,
|
||||
* certRef IssuerSerial
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector vec = new Asn1EncodableVector();
|
||||
if (country != null)
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 1, new DerPrintableString(country, true)));
|
||||
}
|
||||
if (typeOfSubstitution != null)
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 2, typeOfSubstitution));
|
||||
}
|
||||
if (thirdPerson != null)
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 3, thirdPerson));
|
||||
}
|
||||
else
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 3, certRef));
|
||||
}
|
||||
|
||||
return new DerSequence(vec);
|
||||
}
|
||||
}
|
||||
}
|
386
iTechSharp/srcbc/asn1/isismtt/x509/ProfessionInfo.cs
Normal file
386
iTechSharp/srcbc/asn1/isismtt/x509/ProfessionInfo.cs
Normal file
@@ -0,0 +1,386 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X500;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* Professions, specializations, disciplines, fields of activity, etc.
|
||||
*
|
||||
* <pre>
|
||||
* ProfessionInfo ::= SEQUENCE
|
||||
* {
|
||||
* namingAuthority [0] EXPLICIT NamingAuthority OPTIONAL,
|
||||
* professionItems SEQUENCE OF DirectoryString (SIZE(1..128)),
|
||||
* professionOids SEQUENCE OF OBJECT IDENTIFIER OPTIONAL,
|
||||
* registrationNumber PrintableString(SIZE(1..128)) OPTIONAL,
|
||||
* addProfessionInfo OCTET STRING OPTIONAL
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @see Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax
|
||||
*/
|
||||
public class ProfessionInfo
|
||||
: Asn1Encodable
|
||||
{
|
||||
/**
|
||||
* Rechtsanw<6E>ltin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Rechtsanwltin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".1");
|
||||
|
||||
/**
|
||||
* Rechtsanwalt
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Rechtsanwalt = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".2");
|
||||
|
||||
/**
|
||||
* Rechtsbeistand
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Rechtsbeistand = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".3");
|
||||
|
||||
/**
|
||||
* Steuerberaterin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Steuerberaterin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".4");
|
||||
|
||||
/**
|
||||
* Steuerberater
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Steuerberater = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".5");
|
||||
|
||||
/**
|
||||
* Steuerbevollm<6C>chtigte
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Steuerbevollmchtigte = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".6");
|
||||
|
||||
/**
|
||||
* Steuerbevollm<6C>chtigter
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Steuerbevollmchtigter = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".7");
|
||||
|
||||
/**
|
||||
* Notarin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Notarin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".8");
|
||||
|
||||
/**
|
||||
* Notar
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Notar = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".9");
|
||||
|
||||
/**
|
||||
* Notarvertreterin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Notarvertreterin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".10");
|
||||
|
||||
/**
|
||||
* Notarvertreter
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Notarvertreter = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".11");
|
||||
|
||||
/**
|
||||
* Notariatsverwalterin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Notariatsverwalterin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".12");
|
||||
|
||||
/**
|
||||
* Notariatsverwalter
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Notariatsverwalter = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".13");
|
||||
|
||||
/**
|
||||
* Wirtschaftspr<70>ferin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Wirtschaftsprferin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".14");
|
||||
|
||||
/**
|
||||
* Wirtschaftspr<70>fer
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Wirtschaftsprfer = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".15");
|
||||
|
||||
/**
|
||||
* Vereidigte Buchpr<70>ferin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier VereidigteBuchprferin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".16");
|
||||
|
||||
/**
|
||||
* Vereidigter Buchpr<70>fer
|
||||
*/
|
||||
public static readonly DerObjectIdentifier VereidigterBuchprfer = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".17");
|
||||
|
||||
/**
|
||||
* Patentanw<6E>ltin
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Patentanwltin = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".18");
|
||||
|
||||
/**
|
||||
* Patentanwalt
|
||||
*/
|
||||
public static readonly DerObjectIdentifier Patentanwalt = new DerObjectIdentifier(
|
||||
NamingAuthority.IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern + ".19");
|
||||
|
||||
private readonly NamingAuthority namingAuthority;
|
||||
private readonly Asn1Sequence professionItems;
|
||||
private readonly Asn1Sequence professionOids;
|
||||
private readonly string registrationNumber;
|
||||
private readonly Asn1OctetString addProfessionInfo;
|
||||
|
||||
public static ProfessionInfo GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is ProfessionInfo)
|
||||
{
|
||||
return (ProfessionInfo) obj;
|
||||
}
|
||||
|
||||
if (obj is Asn1Sequence)
|
||||
{
|
||||
return new ProfessionInfo((Asn1Sequence) obj);
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from Asn1Sequence.
|
||||
* <p/>
|
||||
* <p/>
|
||||
* <pre>
|
||||
* ProfessionInfo ::= SEQUENCE
|
||||
* {
|
||||
* namingAuthority [0] EXPLICIT NamingAuthority OPTIONAL,
|
||||
* professionItems SEQUENCE OF DirectoryString (SIZE(1..128)),
|
||||
* professionOids SEQUENCE OF OBJECT IDENTIFIER OPTIONAL,
|
||||
* registrationNumber PrintableString(SIZE(1..128)) OPTIONAL,
|
||||
* addProfessionInfo OCTET STRING OPTIONAL
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @param seq The ASN.1 sequence.
|
||||
*/
|
||||
private ProfessionInfo(
|
||||
Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count > 5)
|
||||
throw new ArgumentException("Bad sequence size: " + seq.Count);
|
||||
|
||||
IEnumerator e = seq.GetEnumerator();
|
||||
|
||||
e.MoveNext();
|
||||
Asn1Encodable o = (Asn1Encodable) e.Current;
|
||||
|
||||
if (o is Asn1TaggedObject)
|
||||
{
|
||||
Asn1TaggedObject ato = (Asn1TaggedObject) o;
|
||||
if (ato.TagNo != 0)
|
||||
throw new ArgumentException("Bad tag number: " + ato.TagNo);
|
||||
|
||||
namingAuthority = NamingAuthority.GetInstance(ato, true);
|
||||
e.MoveNext();
|
||||
o = (Asn1Encodable) e.Current;
|
||||
}
|
||||
|
||||
professionItems = Asn1Sequence.GetInstance(o);
|
||||
|
||||
if (e.MoveNext())
|
||||
{
|
||||
o = (Asn1Encodable) e.Current;
|
||||
if (o is Asn1Sequence)
|
||||
{
|
||||
professionOids = Asn1Sequence.GetInstance(o);
|
||||
}
|
||||
else if (o is DerPrintableString)
|
||||
{
|
||||
registrationNumber = DerPrintableString.GetInstance(o).GetString();
|
||||
}
|
||||
else if (o is Asn1OctetString)
|
||||
{
|
||||
addProfessionInfo = Asn1OctetString.GetInstance(o);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + o.GetType().Name);
|
||||
}
|
||||
}
|
||||
|
||||
if (e.MoveNext())
|
||||
{
|
||||
o = (Asn1Encodable) e.Current;
|
||||
if (o is DerPrintableString)
|
||||
{
|
||||
registrationNumber = DerPrintableString.GetInstance(o).GetString();
|
||||
}
|
||||
else if (o is DerOctetString)
|
||||
{
|
||||
addProfessionInfo = (DerOctetString) o;
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + o.GetType().Name);
|
||||
}
|
||||
}
|
||||
|
||||
if (e.MoveNext())
|
||||
{
|
||||
o = (Asn1Encodable) e.Current;
|
||||
if (o is DerOctetString)
|
||||
{
|
||||
addProfessionInfo = (DerOctetString) o;
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new ArgumentException("Bad object encountered: " + o.GetType().Name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from given details.
|
||||
* <p/>
|
||||
* <code>professionItems</code> is mandatory, all other parameters are
|
||||
* optional.
|
||||
*
|
||||
* @param namingAuthority The naming authority.
|
||||
* @param professionItems Directory strings of the profession.
|
||||
* @param professionOids DERObjectIdentfier objects for the
|
||||
* profession.
|
||||
* @param registrationNumber Registration number.
|
||||
* @param addProfessionInfo Additional infos in encoded form.
|
||||
*/
|
||||
public ProfessionInfo(
|
||||
NamingAuthority namingAuthority,
|
||||
DirectoryString[] professionItems,
|
||||
DerObjectIdentifier[] professionOids,
|
||||
string registrationNumber,
|
||||
Asn1OctetString addProfessionInfo)
|
||||
{
|
||||
this.namingAuthority = namingAuthority;
|
||||
this.professionItems = new DerSequence(professionItems);
|
||||
if (professionOids != null)
|
||||
{
|
||||
this.professionOids = new DerSequence(professionOids);
|
||||
}
|
||||
this.registrationNumber = registrationNumber;
|
||||
this.addProfessionInfo = addProfessionInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* ProfessionInfo ::= SEQUENCE
|
||||
* {
|
||||
* namingAuthority [0] EXPLICIT NamingAuthority OPTIONAL,
|
||||
* professionItems SEQUENCE OF DirectoryString (SIZE(1..128)),
|
||||
* professionOids SEQUENCE OF OBJECT IDENTIFIER OPTIONAL,
|
||||
* registrationNumber PrintableString(SIZE(1..128)) OPTIONAL,
|
||||
* addProfessionInfo OCTET STRING OPTIONAL
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector vec = new Asn1EncodableVector();
|
||||
if (namingAuthority != null)
|
||||
{
|
||||
vec.Add(new DerTaggedObject(true, 0, namingAuthority));
|
||||
}
|
||||
vec.Add(professionItems);
|
||||
if (professionOids != null)
|
||||
{
|
||||
vec.Add(professionOids);
|
||||
}
|
||||
if (registrationNumber != null)
|
||||
{
|
||||
vec.Add(new DerPrintableString(registrationNumber, true));
|
||||
}
|
||||
if (addProfessionInfo != null)
|
||||
{
|
||||
vec.Add(addProfessionInfo);
|
||||
}
|
||||
return new DerSequence(vec);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the addProfessionInfo.
|
||||
*/
|
||||
public virtual Asn1OctetString AddProfessionInfo
|
||||
{
|
||||
get { return addProfessionInfo; }
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the namingAuthority.
|
||||
*/
|
||||
public virtual NamingAuthority NamingAuthority
|
||||
{
|
||||
get { return namingAuthority; }
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the professionItems.
|
||||
*/
|
||||
public virtual DirectoryString[] GetProfessionItems()
|
||||
{
|
||||
DirectoryString[] result = new DirectoryString[professionItems.Count];
|
||||
|
||||
for (int i = 0; i < professionItems.Count; ++i)
|
||||
{
|
||||
result[i] = DirectoryString.GetInstance(professionItems[i]);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the professionOids.
|
||||
*/
|
||||
public virtual DerObjectIdentifier[] GetProfessionOids()
|
||||
{
|
||||
if (professionOids == null)
|
||||
{
|
||||
return new DerObjectIdentifier[0];
|
||||
}
|
||||
|
||||
DerObjectIdentifier[] result = new DerObjectIdentifier[professionOids.Count];
|
||||
|
||||
for (int i = 0; i < professionOids.Count; ++i)
|
||||
{
|
||||
result[i] = DerObjectIdentifier.GetInstance(professionOids[i]);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the registrationNumber.
|
||||
*/
|
||||
public virtual string RegistrationNumber
|
||||
{
|
||||
get { return registrationNumber; }
|
||||
}
|
||||
}
|
||||
}
|
85
iTechSharp/srcbc/asn1/isismtt/x509/Restriction.cs
Normal file
85
iTechSharp/srcbc/asn1/isismtt/x509/Restriction.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
using System;
|
||||
|
||||
using Org.BouncyCastle.Asn1.X500;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.IsisMtt.X509
|
||||
{
|
||||
/**
|
||||
* Some other restriction regarding the usage of this certificate.
|
||||
* <p/>
|
||||
* <pre>
|
||||
* RestrictionSyntax ::= DirectoryString (SIZE(1..1024))
|
||||
* </pre>
|
||||
*/
|
||||
public class Restriction
|
||||
: Asn1Encodable
|
||||
{
|
||||
private readonly DirectoryString restriction;
|
||||
|
||||
public static Restriction GetInstance(
|
||||
object obj)
|
||||
{
|
||||
if (obj == null || obj is Restriction)
|
||||
{
|
||||
return (Restriction) obj;
|
||||
}
|
||||
|
||||
if (obj is IAsn1String)
|
||||
{
|
||||
return new Restriction(DirectoryString.GetInstance(obj));
|
||||
}
|
||||
|
||||
throw new ArgumentException("unknown object in factory: " + obj.GetType().Name, "obj");
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from DirectoryString.
|
||||
* <p/>
|
||||
* The DirectoryString is of type RestrictionSyntax:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* RestrictionSyntax ::= DirectoryString (SIZE(1..1024))
|
||||
* </pre>
|
||||
*
|
||||
* @param restriction A IAsn1String.
|
||||
*/
|
||||
private Restriction(
|
||||
DirectoryString restriction)
|
||||
{
|
||||
this.restriction = restriction;
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from a given details.
|
||||
*
|
||||
* @param restriction The description of the restriction.
|
||||
*/
|
||||
public Restriction(
|
||||
string restriction)
|
||||
{
|
||||
this.restriction = new DirectoryString(restriction);
|
||||
}
|
||||
|
||||
public virtual DirectoryString RestrictionString
|
||||
{
|
||||
get { return restriction; }
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce an object suitable for an Asn1OutputStream.
|
||||
* <p/>
|
||||
* Returns:
|
||||
* <p/>
|
||||
* <pre>
|
||||
* RestrictionSyntax ::= DirectoryString (SIZE(1..1024))
|
||||
* <p/>
|
||||
* </pre>
|
||||
*
|
||||
* @return an Asn1Object
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return restriction.ToAsn1Object();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user