blob: 49b3a700bd0eb7d28a10f3916082e073937069d0 [file] [log] [blame]
package org.bouncycastle.asn1.pkcs;
import java.util.Enumeration;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.BERSequence;
import org.bouncycastle.asn1.BERTaggedObject;
import org.bouncycastle.asn1.DEREncodable;
import org.bouncycastle.asn1.DERObject;
import org.bouncycastle.asn1.DERObjectIdentifier;
import org.bouncycastle.asn1.DERTaggedObject;
public class ContentInfo
extends ASN1Encodable
implements PKCSObjectIdentifiers
{
private DERObjectIdentifier contentType;
private DEREncodable content;
public static ContentInfo getInstance(
Object obj)
{
if (obj instanceof ContentInfo)
{
return (ContentInfo)obj;
}
else if (obj instanceof ASN1Sequence)
{
return new ContentInfo((ASN1Sequence)obj);
}
throw new IllegalArgumentException("unknown object in factory");
}
public ContentInfo(
ASN1Sequence seq)
{
Enumeration e = seq.getObjects();
contentType = (DERObjectIdentifier)e.nextElement();
if (e.hasMoreElements())
{
content = ((DERTaggedObject)e.nextElement()).getObject();
}
}
public ContentInfo(
DERObjectIdentifier contentType,
DEREncodable content)
{
this.contentType = contentType;
this.content = content;
}
public DERObjectIdentifier getContentType()
{
return contentType;
}
public DEREncodable getContent()
{
return content;
}
/**
* Produce an object suitable for an ASN1OutputStream.
* <pre>
* ContentInfo ::= SEQUENCE {
* contentType ContentType,
* content
* [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
* </pre>
*/
public DERObject toASN1Object()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(contentType);
if (content != null)
{
v.add(new BERTaggedObject(0, content));
}
return new BERSequence(v);
}
}