org.bouncycastle.asn1.cmp.GenMsgContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk16 Show documentation
Show all versions of bcprov-jdk16 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6.
package org.bouncycastle.asn1.cmp;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERObject;
public class GenMsgContent
extends ASN1Encodable
{
private ASN1Sequence content;
private GenMsgContent(ASN1Sequence seq)
{
content = seq;
}
public static GenMsgContent getInstance(Object o)
{
if (o instanceof GenMsgContent)
{
return (GenMsgContent)o;
}
if (o instanceof ASN1Sequence)
{
return new GenMsgContent((ASN1Sequence)o);
}
throw new IllegalArgumentException("Invalid object: " + o.getClass().getName());
}
public InfoTypeAndValue[] toInfoTypeAndValueArray()
{
InfoTypeAndValue[] result = new InfoTypeAndValue[content.size()];
for (int i = 0; i != result.length; i++)
{
result[i] = InfoTypeAndValue.getInstance(content.getObjectAt(i));
}
return result;
}
/**
*
* GenMsgContent ::= SEQUENCE OF InfoTypeAndValue
*
* @return a basic ASN.1 object representation.
*/
public DERObject toASN1Object()
{
return content;
}
}