mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-03 14:07:14 +00:00
56 lines
1.3 KiB
Java
56 lines
1.3 KiB
Java
package com.google.bitcoin.bouncycastle.asn1.cmp;
|
|
|
|
import com.google.bitcoin.bouncycastle.asn1.ASN1Encodable;
|
|
import com.google.bitcoin.bouncycastle.asn1.ASN1Sequence;
|
|
import com.google.bitcoin.bouncycastle.asn1.DERObject;
|
|
import com.google.bitcoin.bouncycastle.asn1.x509.CertificateList;
|
|
|
|
public class CRLAnnContent
|
|
extends ASN1Encodable
|
|
{
|
|
private ASN1Sequence content;
|
|
|
|
private CRLAnnContent(ASN1Sequence seq)
|
|
{
|
|
content = seq;
|
|
}
|
|
|
|
public static CRLAnnContent getInstance(Object o)
|
|
{
|
|
if (o instanceof CRLAnnContent)
|
|
{
|
|
return (CRLAnnContent)o;
|
|
}
|
|
|
|
if (o instanceof ASN1Sequence)
|
|
{
|
|
return new CRLAnnContent((ASN1Sequence)o);
|
|
}
|
|
|
|
throw new IllegalArgumentException("Invalid object: " + o.getClass().getName());
|
|
}
|
|
|
|
public CertificateList[] toCertificateListArray()
|
|
{
|
|
CertificateList[] result = new CertificateList[content.size()];
|
|
|
|
for (int i = 0; i != result.length; i++)
|
|
{
|
|
result[i] = CertificateList.getInstance(content.getObjectAt(i));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* <pre>
|
|
* CRLAnnContent ::= SEQUENCE OF CertificateList
|
|
* </pre>
|
|
* @return a basic ASN.1 object representation.
|
|
*/
|
|
public DERObject toASN1Object()
|
|
{
|
|
return content;
|
|
}
|
|
}
|