110 lines
2.1 KiB
C#
110 lines
2.1 KiB
C#
using System;
|
|
|
|
using Org.BouncyCastle.Asn1.X509;
|
|
|
|
namespace Org.BouncyCastle.Asn1.Ess
|
|
{
|
|
[Obsolete("Use version in Asn1.Esf instead")]
|
|
public class OtherSigningCertificate
|
|
: Asn1Encodable
|
|
{
|
|
private Asn1Sequence certs, policies;
|
|
|
|
public static OtherSigningCertificate GetInstance(
|
|
object o)
|
|
{
|
|
if (o == null || o is OtherSigningCertificate)
|
|
{
|
|
return (OtherSigningCertificate) o;
|
|
}
|
|
|
|
if (o is Asn1Sequence)
|
|
{
|
|
return new OtherSigningCertificate((Asn1Sequence) o);
|
|
}
|
|
|
|
throw new ArgumentException(
|
|
"unknown object in 'OtherSigningCertificate' factory : "
|
|
+ o.GetType().Name + ".");
|
|
}
|
|
|
|
/**
|
|
* constructors
|
|
*/
|
|
public OtherSigningCertificate(
|
|
Asn1Sequence seq)
|
|
{
|
|
if (seq.Count < 1 || seq.Count > 2)
|
|
{
|
|
throw new ArgumentException("Bad sequence size: " + seq.Count);
|
|
}
|
|
|
|
this.certs = Asn1Sequence.GetInstance(seq[0]);
|
|
|
|
if (seq.Count > 1)
|
|
{
|
|
this.policies = Asn1Sequence.GetInstance(seq[1]);
|
|
}
|
|
}
|
|
|
|
public OtherSigningCertificate(
|
|
OtherCertID otherCertID)
|
|
{
|
|
certs = new DerSequence(otherCertID);
|
|
}
|
|
|
|
public OtherCertID[] GetCerts()
|
|
{
|
|
OtherCertID[] cs = new OtherCertID[certs.Count];
|
|
|
|
for (int i = 0; i != certs.Count; ++i)
|
|
{
|
|
cs[i] = OtherCertID.GetInstance(certs[i]);
|
|
}
|
|
|
|
return cs;
|
|
}
|
|
|
|
public PolicyInformation[] GetPolicies()
|
|
{
|
|
if (policies == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
PolicyInformation[] ps = new PolicyInformation[policies.Count];
|
|
|
|
for (int i = 0; i != policies.Count; i++)
|
|
{
|
|
ps[i] = PolicyInformation.GetInstance(policies[i]);
|
|
}
|
|
|
|
return ps;
|
|
}
|
|
|
|
/**
|
|
* The definition of OtherSigningCertificate is
|
|
* <pre>
|
|
* OtherSigningCertificate ::= SEQUENCE {
|
|
* certs SEQUENCE OF OtherCertID,
|
|
* policies SEQUENCE OF PolicyInformation OPTIONAL
|
|
* }
|
|
* </pre>
|
|
* id-aa-ets-otherSigCert OBJECT IDENTIFIER ::= { iso(1)
|
|
* member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9)
|
|
* smime(16) id-aa(2) 19 }
|
|
*/
|
|
public override Asn1Object ToAsn1Object()
|
|
{
|
|
Asn1EncodableVector v = new Asn1EncodableVector(certs);
|
|
|
|
if (policies != null)
|
|
{
|
|
v.Add(policies);
|
|
}
|
|
|
|
return new DerSequence(v);
|
|
}
|
|
}
|
|
}
|